kopia lustrzana https://github.com/OpenDroneMap/ODM
13 wiersze
146 B
Plaintext
13 wiersze
146 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
args=""
|
||
|
|
||
|
for i in "$@"
|
||
|
do
|
||
|
if [[ $i != -march* ]]; then
|
||
|
args="$args $i"
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
/usr/bin/g++_real -march=core2 $args
|