mirror of https://gitee.com/bigwinds/arangodb
Packaging/fix debug config (#4352)
This commit is contained in:
parent
7bb1c88663
commit
ceed0f15e1
|
@ -181,7 +181,13 @@ case "$1" in
|
||||||
BUILD_CONFIG=Debug
|
BUILD_CONFIG=Debug
|
||||||
CFLAGS="${CFLAGS} -O0"
|
CFLAGS="${CFLAGS} -O0"
|
||||||
CXXFLAGS="${CXXFLAGS} -O0"
|
CXXFLAGS="${CXXFLAGS} -O0"
|
||||||
CONFIGURE_OPTIONS+=('-DV8_TARGET_ARCHS=Debug' "-DCMAKE_BUILD_TYPE=${BUILD_CONFIG}")
|
CONFIGURE_OPTIONS+=(
|
||||||
|
'-DV8_TARGET_ARCHS=Debug'
|
||||||
|
'-DUSE_MAINTAINER_MODE=On'
|
||||||
|
'-DUSE_FAILURE_TESTS=On'
|
||||||
|
'-DOPTDBG=On'
|
||||||
|
"-DCMAKE_BUILD_TYPE=${BUILD_CONFIG}"
|
||||||
|
)
|
||||||
|
|
||||||
echo "using debug compile configuration"
|
echo "using debug compile configuration"
|
||||||
shift
|
shift
|
||||||
|
|
|
@ -23,7 +23,7 @@ if ! test -d 3rdParty/arangodb-starter; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
./Installation/Jenkins/build.sh \
|
./Installation/Jenkins/build.sh \
|
||||||
maintainer \
|
debug \
|
||||||
--failure-tests \
|
--failure-tests \
|
||||||
--rpath \
|
--rpath \
|
||||||
--parallel ${CPU_CORES} \
|
--parallel ${CPU_CORES} \
|
||||||
|
|
Loading…
Reference in New Issue