Disable thread local storage (TLS) in picolibc

It was causing some compilation issues with lm32.
As global errno was enabled anyway, it was easier 
to disable TLS whatsoever.
This commit is contained in:
Michal Sieron 2021-08-19 10:10:28 +02:00
parent c84105f399
commit ef7b287248
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ libc.a: cross.txt
meson $(PICOLIBC_DIRECTORY) \
-Dmultilib=false \
-Dpicocrt=false \
-Dnewlib-global-errno=true \
-Dthread-local-storage=false \
-Dio-long-long=true \
-Dincludedir=picolibc/$(TRIPLE)/include \
-Dlibdir=picolibc/$(TRIPLE)/lib \