espressif / binutils-esp32ulp

Binutils fork with support for the ESP32 ULP co-processor
GNU General Public License v2.0
46 stars 18 forks source link

pre-compiled 32bit linux binutils wanted #1

Open tranzistoren opened 7 years ago

tranzistoren commented 7 years ago

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

fivdi commented 6 years ago

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.