mirror of
https://abf.rosa.ru/djam/firefox-esr91.git
synced 2025-02-23 17:12:55 +00:00
10 lines
210 B
Bash
10 lines
210 B
Bash
#!/bin/sh
|
|
|
|
linker_flags="$(echo "$@" | tr ' ' '\n' | grep '^\-l' | tr '\n' ' ')"
|
|
|
|
add=""
|
|
if ! echo "$@" | grep -q 'stdc++-gcc10'; then
|
|
add="$CXXFLAGS"
|
|
fi
|
|
|
|
/usr/bin/clang++ $add "$@" $LIBCCX_LIBS $linker_flags
|