1
0
Fork 0

add option to disable processor specific optimisations

This commit is contained in:
Wilfried Goesgens 2016-10-07 15:49:01 +02:00
parent 5c6b840442
commit d08fe7fa4d
1 changed files with 5 additions and 0 deletions

View File

@ -210,6 +210,11 @@ while [ $# -gt 0 ]; do
shift
;;
--noopt)
CONFIGURE_OPTIONS="${CONFIGURE_OPTIONS} -DUSE_OPTIMIZE_FOR_ARCHITECTURE=Off"
shift
;;
--coverage)
TAR_SUFFIX="-coverage"
COVERAGE=1