On OS X default to XCODE5 (clang + lldb). 

Also flipped the default so that future OS versions get XCODE5 target.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Andrew Fish <[email protected]>

Thanks,

Andrew Fish

2>svn diff --diff-cmd diff OvmfPkg/build.sh
Index: OvmfPkg/build.sh
===================================================================
--- OvmfPkg/build.sh    (revision 16081)
+++ OvmfPkg/build.sh    (working copy)
@@ -62,15 +62,19 @@
   Darwin*)
     Major=$(uname -r | cut -f 1 -d '.')
     case $Major in
+      1[56789])
+        echo OvmfPkg requires Snow Leopard or later OS
+        exit 1
+        ;;
       10)
         TARGET_TOOLS=XCODE32
         ;;
       1[12])
         TARGET_TOOLS=XCLANG
         ;;
-       *)
-        echo OvmfPkg requires Snow Leopard or later OS
-        exit 1
+      *)
+        # Mavericks and future assume XCODE5 (clang + lldb)
+        TARGET_TOOLS=XCODE5
         ;;
     esac
     ;;

------------------------------------------------------------------------------
Want excitement?
Manually upgrade your production database.
When you want reliability, choose Perforce.
Perforce version control. Predictably reliable.
http://pubads.g.doubleclick.net/gampad/clk?id=157508191&iu=/4140/ostg.clktrk
_______________________________________________
edk2-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to