mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-06-30 20:40:59 +02:00
Fix linking failure for space in path in PlatformIO builder scripts (#6464)
Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
c26e3f4299
commit
51040cc4eb
@ -112,7 +112,7 @@ env.Append(
|
|||||||
"-u", "newlib_include_pthread_impl",
|
"-u", "newlib_include_pthread_impl",
|
||||||
"-u", "newlib_include_assert_impl",
|
"-u", "newlib_include_assert_impl",
|
||||||
"-u", "__cxa_guard_dummy",
|
"-u", "__cxa_guard_dummy",
|
||||||
'-Wl,-Map="%s"' % join("$BUILD_DIR", basename(env.subst("${PROJECT_DIR}.map")))
|
'-Wl,-Map="%s"' % join("${BUILD_DIR}", "${PROGNAME}.map")
|
||||||
],
|
],
|
||||||
|
|
||||||
CPPPATH=[
|
CPPPATH=[
|
||||||
|
@ -111,7 +111,7 @@ env.Append(
|
|||||||
"-u", "newlib_include_pthread_impl",
|
"-u", "newlib_include_pthread_impl",
|
||||||
"-u", "newlib_include_assert_impl",
|
"-u", "newlib_include_assert_impl",
|
||||||
"-u", "__cxa_guard_dummy",
|
"-u", "__cxa_guard_dummy",
|
||||||
'-Wl,-Map="%s"' % join("$BUILD_DIR", basename(env.subst("${PROJECT_DIR}.map")))
|
'-Wl,-Map="%s"' % join("${BUILD_DIR}", "${PROGNAME}.map")
|
||||||
],
|
],
|
||||||
|
|
||||||
CPPPATH=[
|
CPPPATH=[
|
||||||
|
@ -108,7 +108,7 @@ env.Append(
|
|||||||
"-u", "newlib_include_pthread_impl",
|
"-u", "newlib_include_pthread_impl",
|
||||||
"-u", "newlib_include_assert_impl",
|
"-u", "newlib_include_assert_impl",
|
||||||
"-u", "__cxa_guard_dummy",
|
"-u", "__cxa_guard_dummy",
|
||||||
'-Wl,-Map="%s"' % join("$BUILD_DIR", basename(env.subst("${PROJECT_DIR}.map")))
|
'-Wl,-Map="%s"' % join("${BUILD_DIR}", "${PROGNAME}.map")
|
||||||
],
|
],
|
||||||
|
|
||||||
CPPPATH=[
|
CPPPATH=[
|
||||||
|
@ -108,7 +108,7 @@ env.Append(
|
|||||||
"-u", "newlib_include_pthread_impl",
|
"-u", "newlib_include_pthread_impl",
|
||||||
"-u", "newlib_include_assert_impl",
|
"-u", "newlib_include_assert_impl",
|
||||||
"-u", "__cxa_guard_dummy",
|
"-u", "__cxa_guard_dummy",
|
||||||
'-Wl,-Map="%s"' % join("$BUILD_DIR", basename(env.subst("${PROJECT_DIR}.map")))
|
'-Wl,-Map="%s"' % join("${BUILD_DIR}", "${PROGNAME}.map")
|
||||||
],
|
],
|
||||||
|
|
||||||
CPPPATH=[
|
CPPPATH=[
|
||||||
|
Reference in New Issue
Block a user