-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71e09fa
commit 9d5d8ff
Showing
2 changed files
with
50 additions
and
43 deletions.
There are no files selected for viewing
91 changes: 49 additions & 42 deletions
91
buildroot/share/PlatformIO/scripts/STM32F1_build_flags.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,63 @@ | ||
#!/usr/bin/env python | ||
# | ||
# STM32F1_build_flags.py | ||
# Add build_flags for the base STM32F1_maple environment (stm32f1-maple.ini) | ||
# | ||
from __future__ import print_function | ||
import sys | ||
|
||
# Dynamic build flags for generic compile options | ||
if __name__ == "__main__": | ||
args = " ".join([ "-std=gnu++14", | ||
"-Os", | ||
"-mcpu=cortex-m3", | ||
"-mthumb", | ||
|
||
"-fsigned-char", | ||
"-fno-move-loop-invariants", | ||
"-fno-strict-aliasing", | ||
"-fsingle-precision-constant", | ||
|
||
"--specs=nano.specs", | ||
"--specs=nosys.specs", | ||
|
||
"-IMarlin/src/HAL/STM32F1", | ||
# Print these plus the given args when running directly on the command-line | ||
args = [ | ||
"-std=gnu++14", | ||
"-Os", | ||
"-mcpu=cortex-m3", | ||
"-mthumb", | ||
|
||
"-MMD", | ||
"-MP", | ||
"-DTARGET_STM32F1" | ||
]) | ||
"-fsigned-char", | ||
"-fno-move-loop-invariants", | ||
"-fno-strict-aliasing", | ||
"-fsingle-precision-constant", | ||
|
||
for i in range(1, len(sys.argv)): | ||
args += " " + sys.argv[i] | ||
"--specs=nano.specs", | ||
"--specs=nosys.specs", | ||
|
||
print(args) | ||
"-MMD", "-MP", | ||
|
||
else: | ||
"-IMarlin/src/HAL/STM32F1", | ||
|
||
# Extra script for stm32f1-maple.ini build_flags | ||
"-DTARGET_STM32F1", | ||
"-DARDUINO_ARCH_STM32", | ||
"-DPLATFORM_M997_SUPPORT" | ||
] + sys.argv[1:] | ||
|
||
import pioutil | ||
if pioutil.is_pio_build(): | ||
pioutil.env.Append( | ||
ARFLAGS=["rcs"], | ||
print(" ".join(args)) | ||
|
||
ASFLAGS=["-x", "assembler-with-cpp"], | ||
else: | ||
|
||
CXXFLAGS=[ | ||
"-fabi-version=0", | ||
"-fno-use-cxa-atexit", | ||
"-fno-threadsafe-statics" | ||
], | ||
LINKFLAGS=[ | ||
"-Os", | ||
"-mcpu=cortex-m3", | ||
"-ffreestanding", | ||
"-mthumb", | ||
"--specs=nano.specs", | ||
"--specs=nosys.specs", | ||
"-u_printf_float", | ||
], | ||
) | ||
# Extra script for stm32f1-maple.ini build_flags | ||
|
||
import pioutil | ||
if pioutil.is_pio_build(): | ||
pioutil.env.Append( | ||
ARFLAGS=["rcs"], | ||
|
||
ASFLAGS=["-x", "assembler-with-cpp"], | ||
|
||
CXXFLAGS=[ | ||
"-fabi-version=0", | ||
"-fno-use-cxa-atexit", | ||
"-fno-threadsafe-statics" | ||
], | ||
LINKFLAGS=[ | ||
"-Os", | ||
"-mcpu=cortex-m3", | ||
"-ffreestanding", | ||
"-mthumb", | ||
"--specs=nano.specs", | ||
"--specs=nosys.specs", | ||
"-u_printf_float", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters