Skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.9/libgcc.a when searching for -lgcc

Hi all, just downloaded RIOT and I am trying hello-world example build on my Debian machine:

drasko@Lenin:~/riot/examples/hello-world$ make Building application "hello-world" for "native" with MCU "native".

"make" -C /home/drasko/riot/boards/native "make" -C /home/drasko/riot/boards/native/drivers "make" -C /home/drasko/riot/core "make" -C /home/drasko/riot/cpu/native "make" -C /home/drasko/riot/cpu/native/periph "make" -C /home/drasko/riot/drivers "make" -C /home/drasko/riot/sys "make" -C /home/drasko/riot/sys/auto_init /usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.9/libgcc.a when searching for -lgcc /usr/bin/ld: cannot find -lgcc /usr/bin/ld: skipping incompatible /usr/lib/gcc/x86_64-linux-gnu/4.9/libgcc_s.so when searching for -lgcc_s /usr/bin/ld: cannot find -lgcc_s collect2: error: ld returned 1 exit status /home/drasko/riot/examples/hello-world/../../Makefile.include:175: recipe for target 'all' failed make: *** [all] Error 1

Is there any particular reason why these libraries would be incompatible?

Also, how to get verbose Make? I tried make V=1 and make V=s, do not work.

BR, Drasko

Make board=native

Med venlig hilsen Rane Balslev

Hi,

we are already discussing this in IRC, the problem was missing 32 bit toolchain support.

Cheers, Ludwig

Hi,

for verbose output try

QUIET=0 make ...

Cheers, Hauke