forked from platformio/platformio-core
Reverted `-Wl,-whole-archive
` hook for ST STM32 and mbed
This commit is contained in:
@ -8,6 +8,7 @@ PlatformIO 2.0
|
|||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
* Exclude only ``test`` and ``tests`` folders from build process
|
* Exclude only ``test`` and ``tests`` folders from build process
|
||||||
|
* Reverted ``-Wl,-whole-archive`` hook for ST STM32 and mbed
|
||||||
|
|
||||||
2.8.1 (2016-01-29)
|
2.8.1 (2016-01-29)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
@ -195,6 +195,20 @@ def get_build_flags(data):
|
|||||||
return flags
|
return flags
|
||||||
|
|
||||||
|
|
||||||
|
def _mbed_whole_archive_hook(flags):
|
||||||
|
if (not isinstance(flags, list) or
|
||||||
|
env.get("BOARD_OPTIONS", {}).get("platform") != "ststm32"):
|
||||||
|
return flags
|
||||||
|
|
||||||
|
for pos, flag in enumerate(flags[:]):
|
||||||
|
if isinstance(flag, basestring):
|
||||||
|
continue
|
||||||
|
flags.insert(pos, "-Wl,-whole-archive")
|
||||||
|
flags.insert(pos + 2, "-Wl,-no-whole-archive")
|
||||||
|
|
||||||
|
return flags
|
||||||
|
|
||||||
|
|
||||||
board_type = env.subst("$BOARD")
|
board_type = env.subst("$BOARD")
|
||||||
variant = MBED_VARIANTS[
|
variant = MBED_VARIANTS[
|
||||||
board_type] if board_type in MBED_VARIANTS else board_type.upper()
|
board_type] if board_type in MBED_VARIANTS else board_type.upper()
|
||||||
@ -205,6 +219,8 @@ build_flags = get_build_flags(eixdata)
|
|||||||
variant_dir = join("$PLATFORMFW_DIR", "variant", variant)
|
variant_dir = join("$PLATFORMFW_DIR", "variant", variant)
|
||||||
|
|
||||||
env.Replace(
|
env.Replace(
|
||||||
|
_mbed_whole_archive_hook=_mbed_whole_archive_hook,
|
||||||
|
_LIBFLAGS="${_mbed_whole_archive_hook(%s)}" % env.get("_LIBFLAGS")[2:-1],
|
||||||
CPPFLAGS=build_flags.get("CPPFLAGS", []),
|
CPPFLAGS=build_flags.get("CPPFLAGS", []),
|
||||||
CFLAGS=build_flags.get("CFLAGS", []),
|
CFLAGS=build_flags.get("CFLAGS", []),
|
||||||
CXXFLAGS=build_flags.get("CXXFLAGS", []),
|
CXXFLAGS=build_flags.get("CXXFLAGS", []),
|
||||||
|
Reference in New Issue
Block a user