forked from OSchip/llvm-project
Fix build on platforms that don't have dlfcn.h
llvm-svn: 252190
This commit is contained in:
parent
71d468be66
commit
185a7aadda
|
@ -10,7 +10,10 @@
|
|||
#include "PlatformAppleSimulator.h"
|
||||
|
||||
// C Includes
|
||||
#if defined(__APPLE__)
|
||||
#include <dlfcn.h>
|
||||
#endif
|
||||
|
||||
// C++ Includes
|
||||
#include <mutex>
|
||||
#include <thread>
|
||||
|
|
Loading…
Reference in New Issue