pull/1172/head
Piero Toffanin 2020-10-26 16:18:26 +00:00
commit 5e8fae8ff4
3 zmienionych plików z 14 dodań i 14 usunięć

Wyświetl plik

@ -7,7 +7,7 @@ An open source command line toolkit for processing aerial drone imagery. ODM tur
* Georeferenced Orthorectified Imagery
* Georeferenced Digital Elevation Models
![images-diag](https://user-images.githubusercontent.com/1951843/79700615-f7906f80-8264-11ea-956a-cdc37cdeb263.png)
![images-diag](https://user-images.githubusercontent.com/1174901/96644651-5b205600-12f7-11eb-827b-8f4a3a6f3b21.png)
The application is available for Windows, Mac and Linux and it works from the command line, making it ideal for power users, scripts and for integration with other software.

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[@]}"