binutils-esp32ulp icon indicating copy to clipboard operation
binutils-esp32ulp copied to clipboard

pre-compiled 32bit linux binutils wanted

Open tranzistoren opened this issue 8 years ago • 1 comments

Pre-compiled releases for 32b systems should be also released alongside 64b

tranzistoren avatar May 26 '17 13:05 tranzistoren

For anyone who wants to build the ESP32 ULP binutils on a 32-bit Linux system the following worked for me:

git clone https://github.com/espressif/binutils-esp32ulp.git
cd binutils-esp32ulp
./configure --target=esp32ulp-elf --prefix=$PWD/esp32ulp-elf-binutils --disable-doc --disable-gdb --disable-libdecnumber --disable-readline --disable-sim
echo "MAKEINFO = :" >> Makefile
make
make install-strip

After running the above commands the binaries should be in directory ./esp32ulp-elf-binutils/bin.

The commands were found here in .gitlab-ci.yml.

fivdi avatar Mar 18 '18 18:03 fivdi