Fix build on platforms that don't have dlfcn.h

llvm-svn: 252190
This commit is contained in:
Zachary Turner 2015-11-05 19:22:06 +00:00
parent 71d468be66
commit 185a7aadda
1 changed files with 3 additions and 0 deletions

View File

@ -10,7 +10,10 @@
#include "PlatformAppleSimulator.h"
// C Includes
#if defined(__APPLE__)
#include <dlfcn.h>
#endif
// C++ Includes
#include <mutex>
#include <thread>