diff options
author | Ayke van Laethem <[email protected]> | 2020-01-15 15:59:51 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-03-22 17:14:59 +0100 |
commit | f316ebc23b025e497931cfe420ec143f1a217b57 (patch) | |
tree | 62099034937787559599a42a6adbd820417df7b3 /targets/cortex-m.json | |
parent | 9ec426e25e6738be6e09e0239445d1ca558cbf57 (diff) | |
download | tinygo-f316ebc23b025e497931cfe420ec143f1a217b57.tar.gz tinygo-f316ebc23b025e497931cfe420ec143f1a217b57.zip |
all: include picolibc for bare metal targets
This is necessary for better CGo support on bare metal. Existing
libraries expect to be able to include parts of libc and expect to be
able to link to those symbols.
Because with this all targets have a working libc, it is now possible to
add tests to check that a libc in fact works basically.
Not all parts of picolibc are included, such as the math or stdio parts.
These should be added later, when needed.
This commit also avoids the need for the custom memcpy/memset/memcmp
symbols that are sometimes emitted by LLVM. The C library will take care
of that.
Diffstat (limited to 'targets/cortex-m.json')
-rw-r--r-- | targets/cortex-m.json | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/targets/cortex-m.json b/targets/cortex-m.json index 513a84634..979c09d1f 100644 --- a/targets/cortex-m.json +++ b/targets/cortex-m.json @@ -7,13 +7,12 @@ "scheduler": "tasks", "linker": "ld.lld", "rtlib": "compiler-rt", + "libc": "picolibc", "cflags": [ "-Oz", "-mthumb", "-Werror", "-fshort-enums", - "-nostdlibinc", - "-Wno-macro-redefined", "-fno-exceptions", "-fno-unwind-tables", "-ffunction-sections", "-fdata-sections" ], |