Test building with clang 3.9

Reviewed By: compnerd

Differential Revision: D3667327

fbshipit-source-id: f3ad04360068ee26aeec6f1c2dbe0ed96ba32ad0
This commit is contained in:
Kellie Medlin
2016-08-10 13:05:24 -07:00
committed by Facebook Github Bot 8
parent c6b6f53ae7
commit 2bd1f627ea
3 changed files with 12 additions and 2 deletions

View File

@@ -12,7 +12,11 @@
// iOS doesn't support 'thread_local'. If we reimplement this to use pthread_setspecific
// we can get rid of this
#define MICRO_PROFILER_STUB_IMPLEMENTATION defined(__APPLE__)
#if defined(__APPLE__)
#define MICRO_PROFILER_STUB_IMPLEMENTATION 1
#else
#define MICRO_PROFILER_STUB_IMPLEMENTATION 0
#endif
namespace facebook {
namespace react {