mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 07:18:40 +01:00
configure: Properly test for set crossToolsPrefix and targetArchs.
Now you can specify a --build-cross-tools and then override just GCC from it with a following --use-clang in the same configure invocation.
This commit is contained in:
parent
0d020b8298
commit
36f28382db
8
configure
vendored
8
configure
vendored
@ -699,10 +699,14 @@ while [ $# -gt 0 ] ; do
|
||||
;;
|
||||
esac
|
||||
get_build_tool_path clang clang
|
||||
if [ -n "crossToolsPrefix_$targetArch" ]; then
|
||||
if [ -z `get_variable "crossToolsPrefix_$targetArch"` ] \
|
||||
&& [ -z `get_variable buildCrossToolsMachine_$targetArch` ]; then
|
||||
set_variable crossToolsPrefix_$targetArch llvm-
|
||||
fi
|
||||
targetArchs="$targetArchs $targetArch"
|
||||
if ! test "${targetArchs#*$targetArch}" != "$targetArchs"; then
|
||||
# we have not already added this arch to targetArchs, so add it now
|
||||
targetArchs="$targetArchs $targetArch"
|
||||
fi
|
||||
HAIKU_PACKAGING_ARCHS=
|
||||
shift 2
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user