#3086: Use POCO_IOS_INIT_HACK for Linux in combination with libc++

This commit is contained in:
Günter Obiltschnig 2021-04-12 20:15:30 +02:00
parent 8722e0e38d
commit b4d15d475a

View File

@ -77,6 +77,9 @@
# define POCO_IOS_INIT_HACK 1
// QNX with Dinkumware but not GNU C++ Library
# elif defined(__QNX__) && !defined(__GLIBCPP__)
# define POCO_IOS_INIT_HACK 1
// Linux with Clang libc++
# elif defined(__linux) && defined(_LIBCPP_VERSION)
# define POCO_IOS_INIT_HACK 1
# endif
#endif