mirror of https://git.tukaani.org/xz.git
ci: default to -O2
We need this for when we're passing sanitizer flags or -gdwarf-4 for Clang
with Valgrind. Just always start with -O2 if CFLAGS isn't set in the
environment and append what was passed on the command line.
(cherry picked from commit 65bf7e0a1c
)
This commit is contained in:
parent
752ba5ed99
commit
4381fcf00b
|
@ -48,6 +48,7 @@ DEST_DIR="$SRC_DIR/../xz_build"
|
||||||
PHASE="all"
|
PHASE="all"
|
||||||
ARTIFACTS_DIR_NAME="output"
|
ARTIFACTS_DIR_NAME="output"
|
||||||
|
|
||||||
|
[[ -z ${CFLAGS} ]] && export CFLAGS="-O2"
|
||||||
|
|
||||||
###################
|
###################
|
||||||
# Parse arguments #
|
# Parse arguments #
|
||||||
|
@ -105,7 +106,7 @@ while getopts a:b:c:d:l:m:n:s:p:f:w:h opt; do
|
||||||
p) PHASE="$OPTARG"
|
p) PHASE="$OPTARG"
|
||||||
;;
|
;;
|
||||||
f)
|
f)
|
||||||
CFLAGS="$OPTARG"
|
CFLAGS+=" $OPTARG"
|
||||||
export CFLAGS
|
export CFLAGS
|
||||||
;;
|
;;
|
||||||
w) WRAPPER="$OPTARG"
|
w) WRAPPER="$OPTARG"
|
||||||
|
|
Loading…
Reference in New Issue