1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
|
#!/usr/bin/env bash
#
# crossclang
# A helper script to simplify cross-compilation
#
# Copyright 2019 Christian Kohlschütter
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# if you don't specify a -target, or specify -target current, we infer the name of the current target,
# and look up for our configuration
# if you specify -target default, the default clang compiler will be used
# if you specify -target and some other value, we check the available targets in target-sdks
# and add custom options to clang to simplify cross-compilation
# if you specify an invalid value to -target, the set of available targets is shown as an error message
## debugging
# echo PWD $(pwd)
# echo CROSSCLANG $0 $@
# set -x
# Make sure to include all paths that may contain custom linkers etc.
PATH="$PATH":/usr/bin:/opt/crossclang/local/bin:/opt/homebrew/bin:/usr/local/bin
export PATH
currentDir=$(cd "$(dirname $0)"; pwd)
gccMode=0
compiler=clang
basename=$(basename $0)
if [ $basename == "gcc" ]; then
gccMode=2
compiler="gcc"
fi
clangArgs=()
gccArgs=()
libsArgs=()
target=""
sdkroot=
sdkroot_base=""
needLinker=1
isShared=0
nostdlib=0
hasShared=0
defaultFallback=0
looksLikeCPP=0
# parse arguments
previous=""
hasArgs=$#
hasFiles=0
withAndWithoutLC=0
hasO=0
outputFile=
useLdShim=0
outputStripLibPrefix=0
serializeDiagnosticsOut=
llvmName=llvm
fileList=
# ld64_sdk_version=10.9
ld64_sdk_version=
hideUnknownWarningWarnings=0
hasExportDynamic=0
ignoreExportDynamic=0
skipGccArg=0
analyze=0
extraVersionArgs=()
while [ $# -gt 0 ]; do
v="$1"
shift
skipArg=0
case "$previous" in
-isdkroot ) sdkroot="$v" ;;
-o ) outputFile="$v" ; skipArg=1 ;;
--serialize-diagnostics ) serializeDiagnosticsOut="$v" ;;
esac
case "$v" in
-E ) needLinker=0 ;;
-fsyntax-only ) needLinker=0 ;;
-c ) needLinker=0 ;;
-S ) needLinker=0 ;;
-bundle ) isShared=1 ; skipArg=1 ;;
-dynamic ) isShared=1 ;;
-dynamiclib ) isShared=1 ;;
-shared ) isShared=1; hasShared=1 ;;
-nostdlib ) nostdlib=1 ;;
-Xcrossclang-with-and-without-lc ) withAndWithoutLC=1; skipArg=1 ;;
-Xcrossclang-llvm-name ) llvmName="$1"; shift ; skipArg=1 ;;
-Xcrossclang-use-ldshim ) useLdShim=1 ; skipArg=1 ;;
-Xcrossclang-use-gcc=* ) gccMode=1 ; compiler="${v#-Xcrossclang-use-gcc=}" ; skipArg=1 ;;
-Xcrossclang-output-strip-lib-prefix ) outputStripLibPrefix=1 ; skipArg=1 ;;
-Xcrossclang-ld64-sdk-version ) ld64_sdk_version="$1"; shift ; skipArg=1 ;;
-Xcrossclang-hide-unknown-warning-warnings ) hideUnknownWarningWarnings=1 ; skipArg=1 ;;
-Xcrossclang-ignore-export-dynamic) ignoreExportDynamic=1 ; skipArg=1 ;;
# -index-store-path ) shift ; skipArg=1 ;; # if you're hitting this, set "Enable Index-While-Building Functionality=No" in Xcode build settings instead
-filelist ) fileList="$1" ; shift; skipArg=1 ;;
-current_version ) shift ; skipArg=1 ;;
-compatibility_version ) shift ; skipArg=1 ;;
-o ) hasO=1; skipArg=1 ;;
-Weverything ) skipGccArg=1 ;;
-Wcomma ) skipGccArg=1 ;;
-Wblock-capture-autoreleasing ) skipGccArg=1 ;;
-Winfinite-recursion ) skipGccArg=1 ;;
-Wshorten-64-to-32 ) skipGccArg=1 ;;
-Wobjc-literal-conversion ) skipGccArg=1 ;;
-Wnon-literal-null-conversion ) skipGccArg=1 ;;
-Wno-c++11-extensions ) skipGccArg=1 ;;
-Wno-declaration-after-statement ) skipGccArg=1 ;;
-Wbool-conversion ) skipGccArg=1 ;;
-Wconstant-conversion ) skipGccArg=1 ;;
-Wquoted-include-in-framework-header ) skipGccArg=1 ;;
-fno-c++-static-destructors ) skipGccArg=1 ;;
-fmacro-backtrace-limit=0 ) skipGccArg=1 ;;
-fdiagnostics-show-note-include-stack ) skipGccArg=1 ;;
-Xclang ) skipGccArg=2 ;; # has an argument
--analyze ) analyze=1 ;;
-install_name ) skipGccArg=2 ;; # has an argument
-iquote ) skipGccArg=2 ;; # has an argument
-iframework ) skipGccArg=2 ;; # has an argument
--serialize-diagnostics ) skipGccArg=2 ;; # has an argument
*.cc ) looksLikeCPP=1 ;;
*.cpp ) looksLikeCPP=1 ;;
*.cxx ) looksLikeCPP=1 ;;
*.c++ ) looksLikeCPP=1 ;;
*.hh ) looksLikeCPP=1 ;;
*.hpp ) looksLikeCPP=1 ;;
*.mm ) looksLikeCPP=1 ;;
-l* ) libsArgs+=("$v") ; skipArg=1 ;; # for compatibility, libs will be added last
-target ) v="$1"; target="$v"; shift; skipArg=1 ;;
c++ ) if [ "$previous" == "-x" ]; then looksLikeCPP=1; fi ;;
-m64 ) extraVersionArgs+=("$v") ;;
-Xlinker )
if [[ "$1" == "-export_dynamic" ]]; then
hasExportDynamic=1
elif [[ -n "$1" ]]; then
clangArgs+=("-Xlinker" "$1")
gccArgs+=("-Xlinker" "$1")
fi
shift
skipArg=1
;;
- ) hasFiles=1 ;;
esac
if [[ $hasFiles -eq 0 && -n "$v" && "${v:0:1}" != "-" && -e "$v" ]]; then
hasFiles=1
fi
if [[ "$skipArg" -eq 0 ]]; then
clangArgs+=("$v")
if [[ "$skipGccArg" -le 0 ]]; then
gccArgs+=("$v")
else
skipGccArg=$(( $skipGccArg - 1 ))
fi
fi
previous="$v"
done
if [[ $hasExportDynamic -eq 1 && $ignoreExportDynamic -eq 0 ]]; then
clangArgs+=("-Xlinker" "-export_dynamic")
gccArgs+=("-Xlinker" "-export_dynamic")
fi
if [[ $analyze -gt 0 && $gccMode -gt 0 ]]; then
# When using the static code analyzer, switch back to clang
compiler=clang
gccMode=0
fi
if [[ $gccMode -eq 2 ]]; then
case "$target" in
""|default|unspecified)
;;
*)
compiler=clang
gccMode=0
esac
fi
if [[ $gccMode -gt 0 ]]; then
if [[ -n "$serializeDiagnosticsOut" ]]; then
# Create fake diagnostics file
xxd -r -ps -- >"$serializeDiagnosticsOut" <<EOT
4449414701080000300000000701b240b44239d043383c20812d94833ccc
433abc833b1c04886280407110240b0429a443389cc3432290423a84c339
a4823b98c33b3c24c32cc8c338c84238b8c33994c303528c4238d0832b84
433b94c3434290423a84c33998023b84c3393c248629a4033b94832b8443
3b94c3837198423ae0432ad0c34190a80ac810255008140285285104834a
16080c82d47440944021500814a2040a8142a09024102530a8a681288142
a01018d4f540944021500814a2040a8142a0101814000000210c00000200
00001400000000000000
EOT
fi
fi
clangDir=
whichComp=$(which "$compiler" 2>/dev/null)
[[ -n "$whichComp" ]] && clangDir=$(dirname "$whichComp")
[[ -n "$clangDir" ]] && clangDir=$(cd "$clangDir"; pwd)
[[ "$currentDir" == "$clangDir" ]] && clangDir=
if [[ -z "$clangDir" && $gccMode -eq 0 ]]; then
if [[ "$target" == "default" || -z "$target" ]]; then
clangDir=
comp=$(which gcc)
[[ -n "$comp" ]] && clangDir=$(dirname "$comp") && clangDir=$(cd "$clangDir" && pwd)
if [ -n "$clangDir" ]; then
echo "Warning: No clang found, trying native gcc: $comp" >&2
gccMode=1
compiler="$comp"
fi
fi
fi
findOtherClang=0
if [[ "$currentDir" == "$clangDir" || -z "$clangDir" ]]; then
# looks like we're in the PATH
findOtherClang=1
fi
llvmPath=
if [[ -z "$(which llvm-ar 2>/dev/null)" || $findOtherClang -gt 0 ]]; then
# let's add the latest LLVM to the path
latestLLVM=$(shopt -u failglob ; for f in {/usr/local,/opt/homebrew}/Cellar/"$llvmName"/*/bin; do [[ -d "$f" ]] && echo $f; done | sort -r -n | head -n 1)
if [[ -n "$latestLLVM" && -d "$latestLLVM" ]]; then
llvmPath="$latestLLVM"
fi
fi
if [ -n "$llvmPath" ]; then
export PATH="$llvmPath:/usr/bin:/usr/local/bin:$PATH"
else
export PATH="/usr/bin:/usr/local/bin:$PATH"
fi
if [[ $gccMode -gt 0 ]]; then
clangArgs=( ${gccArgs[@]} )
fi
whichComp=$(which $compiler)
if [[ -z "$whichComp" ]]; then
echo "crossclang could not find compiler $compiler in path $PATH, giving up" >&2
exit 1
fi
clangDir=$(cd $(dirname "$whichComp"); pwd)
if [ "$currentDir" == "$clangDir" ]; then
echo "crossclang detected in PATH. Can't find real clang, giving up" >&2
exit 1
fi
output_args=()
clangLinkerArgs=()
isystem_decls=()
isCompile=0
[[ "$outputFile" == *.o ]] && isCompile=1
if [ $hasO -gt 0 ]; then
if [[ $outputStripLibPrefix -eq 1 ]]; then
outputFile="${outputFile#lib}"
fi
output_args+=("-o" "$outputFile")
fi
if [ $hasFiles -eq 0 ]; then
needLinker=0
fi
if [ "$target" == "default" ]; then
defaultFallback=1
if [[ $gccMode -gt 0 ]]; then
target=unspecified
else
target=""
fi
elif [ "$target" == "current" ]; then
defaultFallback=2
target=
elif [[ -z "$target" && $gccMode -gt 0 ]]; then
target=unspecified
fi
if [[ "$target" != "unspecified" ]]; then
currentTarget=
if [[ -z "$target" ]]; then
if [ $defaultFallback -eq 0 ]; then
PATH=/usr/bin:$PATH
fi
target=$($(which $compiler) --version ${extraVersionArgs[@]} | grep "^Target: " | head -n 1)
target=${target##* }
if [ -z "$target" ]; then
echo "Could not determine target" >&2
exit 1
fi
currentTarget="$target"
if [ $defaultFallback -eq 1 ]; then
if [[ -n "$fileList" ]]; then
clangArgs+=("-filelist" "$fileList")
fi
exec clang ${output_args[@]} ${clangArgs[@]}
fi
fi
sdkroot_bases=()
if [ -n "$sdkroot_base" ]; then
sdkroot_bases+=("$sdkroot_base")
fi
sdkroot_bases+=(
"$(dirname $0)/../target-sdks"
"$HOME/.crossclang/target-sdks"
"/opt/crossclang/target-sdks"
)
if [[ "$target" == "/"* ]]; then
sdkroot="$target"
else
for base in ${sdkroot_bases[@]}; do
if [[ -n "$base" && -f "$base/$target/target.conf" ]]; then
sdkroot_base="$base"
break
fi
done
fi
if [ -z "$sdkroot" ]; then
if [[ -n "$sdkroot_base" && -n "$target" ]]; then
sdkroot="$sdkroot_base/$target"
sdkrootFiles=$(ls "$sdkroot" | grep -v target)
if [[ -z "$sdkrootFiles" ]]; then
echo "Warning: crossclang has an incomplete configuration for target \"$target\" -- you need to run sync-target-sdk first!" >&2
fi
elif [[ "$defaultFallback" -eq 0 ]]; then
platformTarget=$($(which $compiler) --version ${extraVersionArgs[@]} | grep "^Target: " | head -n 1)
platformTarget=${platformTarget##* }
tryPlatformClang=0
case "$target" in
arm64-apple-macos11)
case "$platformTarget" in
arm64-apple-darwin*)
tryPlatformClang=1
;;
esac
;;
x86_64-apple-macos11)
case "$platformTarget" in
arm64-apple-darwin*|x86_64-apple-darwin2*)
tryPlatformClang=1
;;
esac
;;
x86_64-apple-macos)
case "$platformTarget" in
arm64-apple-darwin*|x86_64-apple-darwin*)
tryPlatformClang=1
;;
esac
;;
esac
if [[ $tryPlatformClang -eq 1 ]]; then
export PATH=/usr/bin:$PATH
if [[ -n "$fileList" ]]; then
clangArgs+=("-filelist" "$fileList")
fi
if ! (clang -v 2>&1 | grep -q "^Target: $target\$"); then
echo "Warning: crossclang not configured for target \"$target\" -- you need to run prepare-target-sdk first. Trying native clang now." >&2
fi
exec clang ${output_args[@]} ${clangArgs[@]} -target "$target"
fi
echo "Error: crossclang not configured for target \"$target\" -- you need to run prepare-target-sdk first!" >&2
elif [[ "$defaultFallback" -eq 2 ]]; then
export PATH=/usr/bin:$PATH
if [[ -n "$fileList" ]]; then
clangArgs+=("-filelist" "$fileList")
fi
if ! (clang -v 2>&1 | grep -q "^Target: $target\$"); then
echo "Warning: crossclang not configured for target \"$target\" -- you need to run prepare-target-sdk first. Trying native clang now." >&2
fi
exec clang ${output_args[@]} ${clangArgs[@]} -target "$target"
fi
fi
sdkrootOrig="$sdkroot"
sdkroot=$(cd "$sdkroot" 2>/dev/null && pwd)
targetConf="$sdkroot/target.conf"
target_include_path=()
target_library_path=()
target_framework_path=()
if [[ $? -ne 0 || -z "$sdkrootOrig" || ! -f "$targetConf" ]]; then
if [[ "$target" != "$currentTarget" ]]; then
echo "Could not find SDK root for target: $target" >&2
echo "Available targets:$(for f in $(find "${sdkroot_bases[@]}" -mindepth 1 -maxdepth 1 2>/dev/null); do if [ -f "$f/target.conf" ]; then echo -n $'\n'"- $(basename $f)"; fi done)" >&2
echo "- current (use current target)" >&2
echo "- default (use default clang)" >&2
exit 1
fi
# build for current architecture
sdkroot=
target_triple="$target"
target_linker=ld
if [ -n "$(ld -help 2>/dev/null| grep ld64)" ]; then
target_linker=ld64
fi
else
target=$(cd "$sdkroot"; basename "$(pwd)" )
sdkroot=$(cd "$sdkroot"; pwd )
source "$targetConf"
fi
triple="$target"
if [ -n "$target_triple" ]; then
triple="$target_triple"
if [[ $gccMode -gt 0 ]]; then
# do not add -target
true
else
clangArgs+=("-target" "$target_triple")
fi
fi
if [ -n "$sdkroot" ]; then
isystem_decls+=("--sysroot" "$sdkroot")
isystem_decls+=("-isysroot" "$sdkroot")
fi
for include in ${target_include_cpp_path[@]}; do
if [[ $gccMode -gt 0 ]]; then
isystem_decls+=("-isystem" "$sdkroot/$include")
else
isystem_decls+=("-cxx-isystem" "$sdkroot/$include")
if [ $looksLikeCPP -gt 0 ]; then
# NOTE: working around an issue where -cxx-isystem is ignored
isystem_decls+=("-isystem" "$sdkroot/$include")
fi
fi
done
for include in ${target_include_path[@]}; do
isystem_decls+=("-isystem" "$sdkroot/$include")
done
for path in ${target_framework_path[@]}; do
isystem_decls+=("-iframeworkwithsysroot" "$path")
done
if [ -f "$sdkroot/target.h" ]; then
isystem_decls+=("-imacros" "$sdkroot/target.h")
fi
if [ $hasFiles -eq 0 ]; then
isystem_decls=()
fi
fi
if [ $hasArgs -eq 0 ]; then
needLinker=0
fi
if [ $needLinker -gt 0 ]; then
ldPath=""
if [ -z "$target_linker" ]; then
target_linker=ld
fi
case "$target_linker" in
ld)
ldPath=$(which ld.lld)
if [ $nostdlib -gt 0 ]; then
clangLinkerArgs+=("-fPIC")
fi
if [ $isShared -gt 0 ]; then
if [[ $hasShared -eq 0 ]]; then
clangLinkerArgs+=("-shared")
fi
fi
if [ -n "$sdkroot" ]; then
clangLinkerArgs+=("-Wl,--sysroot=$sdkroot")
for path in ${target_library_path[@]}; do
if [ -d "$sdkroot/$path" ]; then
clangLinkerArgs+=("-Wl,-L$sdkroot/$path")
fi
done
fi
;;
ld64)
ldPath=$currentDir/ld64shim
if [[ -n "$ld64_sdk_version" ]]; then
clangLinkerArgs+=("-Wl,-sdk_version,$ld64_sdk_version")
fi
#if [ $nostdlib -gt 0 ]; then
# clangLinkerArgs+=("-Wl,-undefined,dynamic_lookup")
#fi
if [ -n "$sdkroot" ]; then
clangLinkerArgs+=("-Wl,-Z,-syslibroot,$sdkroot")
for path in ${target_library_path[@]}; do
if [ -d "$sdkroot/$path" ]; then
clangLinkerArgs+=("-Wl,-L$path")
fi
done
for path in ${target_framework_path[@]}; do
if [ -d "$sdkroot/$path" ]; then
clangLinkerArgs+=("-Wl,-F$path")
fi
done
fi
;;
"")
# No linker specified
if [ $gccMode -gt 0 ]; then
# OK
true
else
echo "Warning: No target linker specified, trying default" >&2
fi
if [ $isShared -gt 0 ]; then
if [[ $hasShared -eq 0 ]]; then
clangLinkerArgs+=("-shared")
fi
fi
;;
*)
echo "Warning: Unknown target linker: $target_linker" >&2
;;
esac
if [[ -n "$target_linker_binary" ]]; then
ldPath=$(which "$target_linker_binary")
if [[ -z "$ldPath" ]]; then
echo "Error: Could not find custom target linker in path: $target_linker_binary" >&2
exit 1
fi
fi
if [[ $gccMode -gt 0 ]]; then
# ignore -fuse-ld
true
else
if [[ -n "$ldPath" && -f "$ldPath" ]]; then
if [ "$useLdShim" -eq 1 ]; then
ldPath="$currentDir/ldshim"
fi
clangLinkerArgs+=("-fuse-ld=$ldPath")
fi
fi
fi
if [[ -n "$fileList" ]]; then
if [[ "$target_linker" == "ld64" ]]; then
clangLinkerArgs+=("-filelist" "$fileList")
else
clangLinkerArgs+=($(cat "$fileList"))
fi
fi
if [[ "$triple" == *"-w64-"* ]]; then
clangArgsNew=()
for arg in ${clangArgs[@]}; do
case "$arg" in
-fpic|-fPIC|-fpie|-fPIE)
# just ignore these
continue
;;
esac
clangArgsNew+=("$arg")
done
clangArgs=(${clangArgsNew[@]})
fi
if [[ $gccMode -gt 0 ]]; then
clangArgsNew=()
for arg in ${clangArgs[@]}; do
case "$arg" in
-bundle)
# just ignore these
continue
;;
esac
clangArgsNew+=("$arg")
done
clangArgs=(${clangArgsNew[@]})
fi
compilerBinary="$(which $compiler)"
if [ -z "$compilerBinary" ]; then
echo "Cannot compile -- compiler not found: $compiler" >&2
exit 1
fi
# set -x
if [[ $withAndWithoutLC -eq 1 ]]; then
nodepsOut="${outputFile%.*}.nodeps.${outputFile##*.}"
wwoArgs=(${output_args[@]})
wwoArgsNoDeps=(-D__CROSSCLANG_NODEPS__=1 -o "$nodepsOut")
if [ $isCompile -eq 0 ]; then
# linking phase
wwoArgs+=(-lc)
wwoArgsNoDeps+=(-nostdlib)
fi
clangArgsNoDeps=()
for arg in ${clangArgs[@]}; do
if [[ $arg != -* && $arg == *.o ]]; then
arg="${arg%.*}.nodeps.${arg##*.}"
fi
clangArgsNoDeps+=($arg)
done
"$compilerBinary" ${isystem_decls[@]} ${clangLinkerArgs[@]} ${wwoArgs[@]} ${clangArgs[@]} ${libsArgs[@]} && \
"$compilerBinary" ${isystem_decls[@]} ${clangLinkerArgs[@]} ${wwoArgsNoDeps[@]} ${clangArgsNoDeps[@]} ${libsArgs[@]}
elif [[ $hideUnknownWarningWarnings -eq 1 ]]; then
exec "$compilerBinary" ${isystem_decls[@]} ${clangLinkerArgs[@]} ${output_args[@]} ${clangArgs[@]} ${libsArgs[@]} 2> >(grep -v -E "unrecognized command-line option .* may have been intended to silence")
else
exec "$compilerBinary" ${isystem_decls[@]} ${clangLinkerArgs[@]} ${output_args[@]} ${clangArgs[@]} ${libsArgs[@]}
fi
|