From 4f02f211f10ed9d6d7c94650698837fed0e19d38 Mon Sep 17 00:00:00 2001 From: Frederic Pillon Date: Tue, 12 Jul 2022 18:45:11 +0200 Subject: [PATCH] fix(build_opt): add double quotes to allow space in path and avoid to append same line at each build. Signed-off-by: Frederic Pillon --- system/extras/prebuild.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/system/extras/prebuild.sh b/system/extras/prebuild.sh index 12075ed5c1..6c00ee35ec 100755 --- a/system/extras/prebuild.sh +++ b/system/extras/prebuild.sh @@ -10,19 +10,19 @@ if [ ! -f "$BUILD_PATH/sketch" ]; then fi # Create empty build.opt if build_opt.h does not exists in the original sketch dir +# Then add or append -fmacro-prefix-map option to change __FILE__ absolute path of +# the board platform folder to a relative path by using '.'. +# (i.e. the folder containing boards.txt) if [ ! -f "$BUILD_SOURCE_PATH/build_opt.h" ]; then - touch "$BUILD_PATH/sketch/build.opt" + printf '-fmacro-prefix-map="%s"=.' "${BOARD_PLATFORM_PATH//\\/\\\\}" > "$BUILD_PATH/sketch/build.opt" else # Else copy the build_opt.h as build.opt # Workaround to the header file preprocessing done by arduino-cli # See https://github.com/arduino/arduino-cli/issues/1338 cp "$BUILD_SOURCE_PATH/build_opt.h" "$BUILD_PATH/sketch/build.opt" + printf '\n-fmacro-prefix-map="%s"=.' "${BOARD_PLATFORM_PATH//\\/\\\\}" >> "$BUILD_PATH/sketch/build.opt" fi -# Append -fmacro-prefix-map option to change __FILE__ absolute path of the board -# platform folder to a relative path by using '.'. -# (i.e. the folder containing boards.txt) -printf '\n-fmacro-prefix-map=%s=.' "${BOARD_PLATFORM_PATH//\\/\\\\}" >> "$BUILD_PATH/sketch/build.opt" # Force include of SrcWrapper library echo "#include " > "$BUILD_PATH/sketch/SrcWrapper.cpp" pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy