osxcross/oclang
Thomas Pöchtrager e7160ea10a there is an issue in the OSX SDK stdarg.h header file which causes va_copy not to be defined with -std=c++11, so use clang's fixed intrinsic header instead
diff:

-#if __STDC_VERSION__ >= 199900L || !defined(__STRICT_ANSI__)
+#if __STDC_VERSION__ >= 199900L || __cplusplus >= 201103L || !defined(__STRICT_ANSI__)
 #define va_copy(dest, src)  __builtin_va_copy(dest, src)
 #endif
2014-03-26 20:32:31 +01:00
..
check_clang_target_option.sh initial commit 2014-03-26 20:28:13 +01:00
find_intrinsic_headers.sh there is an issue in the OSX SDK stdarg.h header file which causes va_copy not to be defined with -std=c++11, so use clang's fixed intrinsic header instead 2014-03-26 20:32:31 +01:00
find_lto_header.sh more portable way to find the llvm lto.h header 2014-03-26 20:32:30 +01:00
oclang help clang to find its own intrinsic headers (this issue appears to be fixed in clang 3.4+) 2014-03-26 20:32:31 +01:00
test.c initial commit 2014-03-26 20:28:13 +01:00
test.cpp initial commit 2014-03-26 20:28:13 +01:00