]> granicus.if.org Git - clang/commitdiff
fix problems with test/sema/Cocoa.m etc on non-apple machines.
authorChris Lattner <sabre@nondot.org>
Wed, 17 Oct 2007 06:04:46 +0000 (06:04 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 17 Oct 2007 06:04:46 +0000 (06:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43067 91177308-0d34-0410-b5e6-96231b3b80d8

Driver/Targets.cpp

index e7e6a051dacafd2043a2578647ec534ca996c067..581f475ece2063a956505a33940e2aa725f2615a 100644 (file)
@@ -55,8 +55,12 @@ namespace {
 class DarwinTargetInfo : public TargetInfoImpl {
 public:
   virtual void getTargetDefines(std::vector<char> &Defs) const {
+// FIXME: we need a real target configuration system.  For now, only define
+// __APPLE__ if the host has it.
+#ifdef __APPLE__
     Define(Defs, "__APPLE__");
     Define(Defs, "__MACH__");
+#endif
     
     if (1) {// -fobjc-gc controls this.
       Define(Defs, "__weak", "");