this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Xcodeproj fixes (#411)

+28 -1
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++
··· 1 + ../../../../../../../../src/libstdcxx/include/c++
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/wtf
··· 1 + ../../../../../../../../src/external/WTF/include/wtf
+26 -1
Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
··· 4 4 5 5 SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 6 6 7 - clang -B $SCRIPTDIR -target darwin "$@" 7 + foo="not" 8 + extra=() 9 + 10 + array=( "$@" ) 11 + 12 + for i in "${array[@]}" 13 + do 14 + if [ "$i" = "-x" ] && [ "$foo" != "found" ] 15 + then 16 + foo="found" 17 + continue 18 + fi 19 + if [ "$i" = "c++" ] || [ "$i" = "objective-c++" ] 20 + then 21 + if [ "$foo" == "found" ] 22 + then 23 + extra+=( -I$SCRIPTDIR/../include/c++/v1 ) 24 + found="not" 25 + fi 26 + fi 27 + 28 + done 29 + 30 + extra+=( -I$SCRIPTDIR/../include ) 31 + 32 + clang -B $SCRIPTDIR -target darwin ${extra[@]} "$@"