darwin-icc: build for specific SDKs
authorJohn Koleszar <jkoleszar@google.com>
Fri, 24 Sep 2010 15:39:27 +0000 (11:39 -0400)
committerJohn Koleszar <jkoleszar@google.com>
Fri, 24 Sep 2010 15:40:33 +0000 (11:40 -0400)
Add the missing -isysroot and -mmacosx-version-min flags to ICC builds.
Fixes issue #185.

Change-Id: I2fb37fcaaafef7122a61ced603569f4aa17f8bbc

build/make/configure.sh

index 86759a9..cfac539 100755 (executable)
@@ -567,13 +567,13 @@ process_common_toolchain() {
 
     # Handle darwin variants
     case ${toolchain} in
-        *-darwin8-gcc)
+        *-darwin8-*)
             add_cflags  "-isysroot /Developer/SDKs/MacOSX10.4u.sdk"
             add_cflags  "-mmacosx-version-min=10.4"
             add_ldflags "-isysroot /Developer/SDKs/MacOSX10.4u.sdk"
             add_ldflags "-mmacosx-version-min=10.4"
             ;;
-        *-darwin9-gcc)
+        *-darwin9-*)
             add_cflags  "-isysroot /Developer/SDKs/MacOSX10.5.sdk"
             add_cflags  "-mmacosx-version-min=10.5"
             add_ldflags "-isysroot /Developer/SDKs/MacOSX10.5.sdk"