Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
CID
mirrors
libpEpAdapter
Compare Revisions
1270d1476e5e401210ef7eb1a708d7cf8029c8e5...9b4a3c78710ac7ffad145b1696e79d6dd4391733
Source
9b4a3c78710ac7ffad145b1696e79d6dd4391733
Select Git revision
...
Target
1270d1476e5e401210ef7eb1a708d7cf8029c8e5
Select Git revision
Compare
Commits (3)
LIB-14 Android build: Always include android/log.h not just on debug
· 54875050
Hussein
authored
Mar 29, 2021
54875050
Merge branch 'android-build' into Release_2.1
· 35fda528
Matthias Heckmann
authored
Mar 30, 2021
35fda528
CI: DEPENDENCIES - libpEpAdapter does not specify engine version to be used.
· 9b4a3c78
Matthias Heckmann
authored
Mar 30, 2021
9b4a3c78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
6 deletions
+12
-6
DEPENDENCIES
DEPENDENCIES
+9
-2
pEpLog.hh
pEpLog.hh
+3
-4
No files found.
DEPENDENCIES
View file @
9b4a3c78
# 1st Party Dependencies
# 1st Party Dependencies
## Prefer git tags instead of SHA hashes when possible.
## Prefer git tags instead of SHA hashes when possible.
pEpEngine=Release_2.1.23
# Change:
sequoia=365d00a08bec6a5a48d48a7c7893d78c27092b59
# libpEpAdapter does not specify any dependencies atm.
# libpEpAdapter is always being used as part of an adapter
# This adapter has to specify the pEpEngine version .e.g
# fdik: dep graph has to be taken from DEP file
# fdik: dependencies need to be resolved recursively from top to bottom
# fdik: stack then needs to be built from the bottom up
pEpLog.hh
View file @
9b4a3c78
...
@@ -6,6 +6,9 @@
...
@@ -6,6 +6,9 @@
#include <sstream>
#include <sstream>
#include <thread>
#include <thread>
#ifdef ANDROID
#include <android/log.h>
#endif
// pEpLog
// pEpLog
// ======
// ======
...
@@ -31,10 +34,6 @@
...
@@ -31,10 +34,6 @@
#ifdef NDEBUG
#ifdef NDEBUG
#define pEpLog(msg) do{}while(0)
#define pEpLog(msg) do{}while(0)
#else
#else
#ifdef ANDROID
#include <android/log.h>
#endif
#define pEpLog(msg) \
#define pEpLog(msg) \
do { \
do { \
std::stringstream msg_ss; \
std::stringstream msg_ss; \
...
...