default to release

This commit is contained in:
Scott E. Graves 2023-12-20 12:12:22 -06:00
parent 80c9375d65
commit f150832676
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
pushd "$(dirname "$0")/.." pushd "$(dirname "$0")/.."
scripts/make_common.sh ${1} "${2}" 1 scripts/make_common.sh "${1}" "${2}" 1
popd popd

View File

@ -11,6 +11,9 @@ NAME=alpine
if [ -z "${BUILD_ARCH}" ]; then if [ -z "${BUILD_ARCH}" ]; then
BUILD_ARCH=64_bit BUILD_ARCH=64_bit
fi fi
if [ -z "${BUILD_TYPE}" ]; then
BUILD_TYPE=Release
fi
ln -sf ${SOURCE_DIR}/build/compile_commands.json ${SOURCE_DIR}/compile_commands.json ln -sf ${SOURCE_DIR}/build/compile_commands.json ${SOURCE_DIR}/compile_commands.json