http://llvm.org/bugs/show_bug.cgi?id=22516
Bug ID: 22516
Summary: libc++ buildit script ignores CXX and CC
Product: libc++
Version: unspecified
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P
Component: All Bugs
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected]
Classification: Unclassified
Libc++ ignores CXX and CC if triple == apple.
See the following lines:
CXX=`xcrun -sdk "${SDKROOT}" -find clang++`
CC=`xcrun -sdk "${SDKROOT}" -find clang`
One could change them to something like:
if [ -z "$CXX" ]
then
CXX=`xcrun -sdk "${SDKROOT}" -find clang++`
fi
if [ -z "$CC" ]
then
CC=`xcrun -sdk "${SDKROOT}" -find clang`
fi
but feels like a hack.
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs