File tree Expand file tree Collapse file tree 6 files changed +5
-7
lines changed Expand file tree Collapse file tree 6 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ commands:
24
24
libclang<<parameters.llvm>>-dev \
25
25
lld<<parameters.llvm>> \
26
26
gcc-arm-linux-gnueabihf \
27
- binutils-arm-none-eabi \
28
27
libc6-dev-armel-cross \
29
28
gcc-aarch64-linux-gnu \
30
29
libc6-dev-arm64-cross \
Original file line number Diff line number Diff line change @@ -11,11 +11,9 @@ matrix:
11
11
addons :
12
12
homebrew :
13
13
update : true
14
- taps : ArmMbed/homebrew-formulae
15
14
packages :
16
15
- llvm@8
17
16
- qemu
18
- - arm-none-eabi-gcc
19
17
20
18
install :
21
19
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/lib /go/src/github.
59
59
60
60
RUN cd /go/src/github.com/tinygo-org/tinygo/ && \
61
61
apt-get update && \
62
- apt-get install -y apt-utils python3 make binutils-arm-none-eabi clang-8 && \
62
+ apt-get install -y apt-utils python3 make clang-8 && \
63
63
make gen-device-nrf && make gen-device-stm32 && \
64
64
apt-get remove -y python3 make && \
65
65
apt-get autoremove -y && \
@@ -74,7 +74,7 @@ COPY --from=tinygo-base /go/src/github.com/tinygo-org/tinygo/lib /go/src/github.
74
74
75
75
RUN cd /go/src/github.com/tinygo-org/tinygo/ && \
76
76
apt-get update && \
77
- apt-get install -y apt-utils python3 make binutils-arm-none-eabi clang-8 binutils-avr gcc-avr avr-libc && \
77
+ apt-get install -y apt-utils python3 make clang-8 binutils-avr gcc-avr avr-libc && \
78
78
make gen-device && \
79
79
apt-get remove -y python3 make && \
80
80
apt-get autoremove -y && \
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ package main
6
6
var commands = map [string ]string {
7
7
"ar" : "llvm-ar" ,
8
8
"clang" : "clang-8" ,
9
- "ld.lld" : "ld.lld-8 " ,
9
+ "ld.lld" : "ld.lld" ,
10
10
"wasm-ld" : "wasm-ld" ,
11
11
}
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ SECTIONS
54
54
55
55
/DISCARD/ :
56
56
{
57
+ *(.ARM.exidx) /* causes 'no memory region specified' error in lld */
57
58
*(.ARM.exidx.*) /* causes spurious 'undefined reference' errors */
58
59
}
59
60
}
Original file line number Diff line number Diff line change 4
4
"goarch" : " arm" ,
5
5
"compiler" : " clang-8" ,
6
6
"gc" : " marksweep" ,
7
- "linker" : " arm-none-eabi-ld " ,
7
+ "linker" : " ld.lld " ,
8
8
"rtlib" : " compiler-rt" ,
9
9
"cflags" : [
10
10
" -Oz" ,
You can’t perform that action at this time.
0 commit comments