Use portable LLVM header instead of Darwin header.

Swift SVN r7857
This commit is contained in:
Adrian Prantl 2013-09-03 20:14:43 +00:00
Родитель b49b9865c4
Коммит e216617f30
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -26,7 +26,7 @@
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/TargetSelect.h"
#include "llvm/Support/raw_ostream.h"
#include <mach-o/loader.h>
#include "llvm/Support/MachO.h"
#include <stdint.h>
#include <fstream>
@ -44,6 +44,7 @@ SDK("sdk", llvm::cl::desc("path to the SDK to build against"),
void anchorForGetMainExecutable() {}
using namespace llvm::MachO;
int main(int argc, char **argv) {
llvm::sys::PrintStackTraceOnErrorSignal();