Merge pull request #1176 from diddledan/gcc-wrapper-fix

Update GCC Wrapper scripts for portable build
pull/1179/head
Piero Toffanin 2020-10-26 12:17:49 -04:00 zatwierdzone przez GitHub
commit 842640528a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 8 dodań i 8 usunięć

Wyświetl plik

@ -1,12 +1,12 @@
#!/bin/bash
args=""
declare -a args
for i in "$@"
do
if [[ $i != -march* ]]; then
args="$args $i"
if [[ "$i" != -march* ]]; then
args+=("$i")
fi
done
/usr/bin/g++_real -march=nehalem $args
/usr/bin/g++_real -march=nehalem "${args[@]}"

Wyświetl plik

@ -1,12 +1,12 @@
#!/bin/bash
args=""
declare -a args
for i in "$@"
do
if [[ $i != -march* ]]; then
args="$args $i"
if [[ "$i" != -march* ]]; then
args+=("$i")
fi
done
/usr/bin/gcc_real -march=nehalem $args
/usr/bin/gcc_real -march=nehalem "${args[@]}"