diff options
author | Ayke van Laethem <[email protected]> | 2021-09-24 01:39:56 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-10-26 17:08:30 +0200 |
commit | 14bb90c3c0f59b752cd4017648521b9adcfeb013 (patch) | |
tree | 3816fe95aae891c160213a2a2f8359015ec36919 /Dockerfile | |
parent | 1645f45c1a42c57426017741643caebfaabc19ea (diff) | |
download | tinygo-14bb90c3c0f59b752cd4017648521b9adcfeb013.tar.gz tinygo-14bb90c3c0f59b752cd4017648521b9adcfeb013.zip |
cgo: add support for stdio in picolibc and wasi-libc
This adds support for stdio in picolibc and fixes wasm_exec.js so that
it can also support C puts. With this, C stdout works on all supported
platforms.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 399f74f7b..603cfe544 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN cd /tinygo/ && \ git submodule sync && \ git submodule update --init --recursive --force -COPY ./lib/picolibc-include/* /tinygo/lib/picolibc-include/ +COPY ./lib/picolibc-* /tinygo/lib/ RUN cd /tinygo/ && \ go install /tinygo/ |