chore 📦: Improve build process for Sdcc compiler

- Improved build process for Sdcc compiler.
- This commit changes the compiler flags in the Makefile to correctly specify the microcontroller family for the SDCC compiler.
This commit is contained in:
2025-02-23 12:02:59 +01:00
parent b6378ff0de
commit 04aa49e13b
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ jobs:
# Set CFLAGS to disable treating warnings as errors
export CFLAGS="$CFLAGS -Wno-error"
# ./configure --target=8051 --with-arch=8051 --prefix=/usr/local
./configure --disable-gbz80-port --disable-z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable-pic16-port --disable-hc08-port --disable-r2k-port --disable-z180-port --disable-sdcdb --disable-ucsim --prefix=/usr/local
./configure --disable-gbz80-port --disable-z80-port --disable-ds390-port --disable-ds400-port --disable-pic14-port --disable-pic16-port --disable-hc08-port --disable-r2k-port --disable-z180-port --disable-sdcdb --disable-ucsim --target=8051 --with-arch=8051 --prefix=/usr/local
make
sudo make install