did I break the compiler path prop?

tmp/arduino-cli-pre-rebase
Jesse Vincent 4 years ago
parent 54ee067758
commit c6ff455c12
No known key found for this signature in database
GPG Key ID: CC228463465E40BC

@ -466,9 +466,9 @@ do_compile_with_cli() {
if [ $CCACHE_ENABLED ]; then
COMPILER_PATH_PROP="--build-properties \"compiler.path=${CCACHE_WRAPPER_PATH}/\""
COMPILER_PATH_PROP="${CCACHE_WRAPPER_PATH}/"
else
COMPILER_PATH_PROP="--build-properties \"compiler.path=${COMPILER_PATH}\""
COMPILER_PATH_PROP="${COMPILER_PATH}"
fi
run_arduino_cli compile \
@ -476,7 +476,7 @@ do_compile_with_cli() {
--libraries "${KALEIDOSCOPE_DIR}/.." \
--build-path "${BUILD_PATH}" \
--output-dir "${OUTPUT_PATH}" \
"${COMPILER_PATH_PROP}" \
--build-properties "compiler.path=${COMPILER_PATH_PROP}" \
--build-properties "compiler.c.cmd=${_CMD_CC}" \
--build-properties "compiler.cpp.cmd=${_CMD_CXX}" \
--build-properties "compiler.ar.cmd=${_CMD_AR}" \

Loading…
Cancel
Save