You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We depend on libc for setjmp, longjmp. As we don't need libgcc, we could drop the second part of this to not depend on the path of a specific GCC version.
However, we would prefer to use GCC to link.
The text was updated successfully, but these errors were encountered:
The current makefile links with
ld
directly, but depends on libc from GCC. To be able to link we hardcode the path to thelibc.a
:LIBS = -L/opt/lm32/lm32-elf/lib -lc -L/opt/lm32/lib/gcc/lm32-elf/6.3.0 -lgcc
We depend on libc for
setjmp
,longjmp
. As we don't need libgcc, we could drop the second part of this to not depend on the path of a specific GCC version.However, we would prefer to use GCC to link.
The text was updated successfully, but these errors were encountered: