]> granicus.if.org Git - clang/commitdiff
A few more cleanups for the GNU family of ObjC runtimes.
authorDavid Chisnall <csdavec@swan.ac.uk>
Wed, 4 Jul 2012 10:37:03 +0000 (10:37 +0000)
committerDavid Chisnall <csdavec@swan.ac.uk>
Wed, 4 Jul 2012 10:37:03 +0000 (10:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159708 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/ObjCRuntime.h
lib/Basic/ObjCRuntime.cpp
lib/Driver/Tools.cpp

index 9212a8bf9504f3ff43e9f53c2d3a4ca63f130d94..10922ed5aff5c34af06a43db0fec8f8999ee296e 100644 (file)
@@ -116,11 +116,8 @@ public:
     case MacOSX: return getVersion() >= VersionTuple(10, 7);
     case iOS: return getVersion() >= VersionTuple(5);
 
-    // This is really a lie, because some implementations and versions
-    // of the runtime do not support ARC.  Probably -fgnu-runtime
-    // should imply a "maximal" runtime or something?
-    case GCC: return true;
-    case GNUstep: return true;
+    case GCC: return false;
+    case GNUstep: return getVersion() >= VersionTuple(1, 6);
     }
     llvm_unreachable("bad kind");
   }
index 0f30bfaa2c4a353c10fb1851abaf3b8e6fb96fe1..f52677b5122c0f45c5352173d16144608c09531d 100644 (file)
@@ -54,6 +54,7 @@ bool ObjCRuntime::tryParse(StringRef input) {
   // Everything prior to that must be a valid string name.
   Kind kind;
   StringRef runtimeName = input.substr(0, dash);
+  Version = VersionTuple(0);
   if (runtimeName == "macosx") {
     kind = ObjCRuntime::MacOSX;
   } else if (runtimeName == "macosx-fragile") {
@@ -61,6 +62,9 @@ bool ObjCRuntime::tryParse(StringRef input) {
   } else if (runtimeName == "ios") {
     kind = ObjCRuntime::iOS;
   } else if (runtimeName == "gnustep") {
+    // If no version is specified then default to the most recent one that we
+    // know about.
+    Version = VersionTuple(1, 6);
     kind = ObjCRuntime::GNUstep;
   } else if (runtimeName == "gcc") {
     kind = ObjCRuntime::GCC;
@@ -69,7 +73,6 @@ bool ObjCRuntime::tryParse(StringRef input) {
   }
   TheKind = kind;
   
-  Version = VersionTuple(0);
   if (dash != StringRef::npos) {
     StringRef verString = input.substr(dash + 1);
     if (Version.tryParse(verString)) 
index a558c1ff96087bc4bbc643f3b5b34d92d57dc063..3b15d123cc1c1cf5b844998b1d2fa656c5878dc2 100644 (file)
@@ -2934,7 +2934,12 @@ ObjCRuntime Clang::AddObjCRuntimeArgs(const ArgList &args,
   // -fgnu-runtime
   } else {
     assert(runtimeArg->getOption().matches(options::OPT_fgnu_runtime));
-    runtime = ObjCRuntime(ObjCRuntime::GCC, VersionTuple());
+    // Legacy behaviour is to target the gnustep runtime if we are i
+    // non-fragile mode or the GCC runtime in fragile mode.
+    if (isNonFragile)
+      runtime = ObjCRuntime(ObjCRuntime::GNUstep, VersionTuple());
+    else
+      runtime = ObjCRuntime(ObjCRuntime::GCC, VersionTuple());
   }
 
   cmdArgs.push_back(args.MakeArgString(