diff --git a/easyinstall.sh b/easyinstall.sh index f12ad150..4a363222 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -83,15 +83,8 @@ function installPackages() { function compileRaScsi() { cd "$BASE/src/raspberrypi" || exit 1 - # Compiler flags needed for gcc v10 and up - if [[ `gcc --version | awk '/gcc/' | awk -F ' ' '{print $3}' | awk -F '.' '{print $1}'` -ge 10 ]]; then - echo -n "gcc 10 or later detected. Will compile with the following flags: " - COMPILER_FLAGS="-DFMT_HEADER_ONLY" - echo $COMPILER_FLAGS - fi - echo "Compiling with ${CORES:-1} simultaneous cores..." - ( make clean && EXTRA_FLAGS="$COMPILER_FLAGS" make -j "${CORES:-1}" all CONNECT_TYPE="${CONNECT_TYPE:-FULLSPEC}" ) = 10) + +ifeq "$(GCCVERSION10)" "1" + CFLAGS += -DFMT_HEADER_ONLY + CXXFLAGS += -DFMT_HEADER_ONLY +endif + + + ## CONNECT_TYPE=FULLSPEC : Specify the type of RaSCSI board type ## that you are using. The typical options are ## STANDARD or FULLSPEC. The default is FULLSPEC diff --git a/src/raspberrypi/gpiobus.cpp b/src/raspberrypi/gpiobus.cpp index d78c66b1..a931f102 100644 --- a/src/raspberrypi/gpiobus.cpp +++ b/src/raspberrypi/gpiobus.cpp @@ -840,7 +840,7 @@ int GPIOBUS::CommandHandShake(BYTE *buf) BOOL ret = WaitSignal(PIN_ACK, TRUE); // Wait until the signal line stabilizes - SysTimer::SleepNsec(GPIO_DATA_SETTLING); + SysTimer::SleepNsec(SCSI_DELAY_BUS_SETTLE_DELAY_NS); // Get data *buf = GetDAT(); @@ -874,7 +874,7 @@ int GPIOBUS::CommandHandShake(BYTE *buf) ret = WaitSignal(PIN_ACK, TRUE); // Wait until the signal line stabilizes - SysTimer::SleepNsec(GPIO_DATA_SETTLING); + SysTimer::SleepNsec(SCSI_DELAY_BUS_SETTLE_DELAY_NS); // Get data *buf = GetDAT(); @@ -930,7 +930,7 @@ int GPIOBUS::ReceiveHandShake(BYTE *buf, int count) ret = WaitSignal(PIN_ACK, TRUE); // Wait until the signal line stabilizes - SysTimer::SleepNsec(GPIO_DATA_SETTLING); + SysTimer::SleepNsec(SCSI_DELAY_BUS_SETTLE_DELAY_NS); // Get data *buf = GetDAT(); @@ -973,7 +973,7 @@ int GPIOBUS::ReceiveHandShake(BYTE *buf, int count) } // Wait until the signal line stabilizes - SysTimer::SleepNsec(GPIO_DATA_SETTLING); + SysTimer::SleepNsec(SCSI_DELAY_BUS_SETTLE_DELAY_NS); // Get data *buf = GetDAT(); diff --git a/src/raspberrypi/gpiobus.h b/src/raspberrypi/gpiobus.h index cc1dcfee..46babdce 100644 --- a/src/raspberrypi/gpiobus.h +++ b/src/raspberrypi/gpiobus.h @@ -433,7 +433,6 @@ // Constant declarations (bus control timing) // //--------------------------------------------------------------------------- -#define GPIO_DATA_SETTLING 100 // Data bus stabilization time (ns) // SCSI Bus timings taken from: // https://www.staff.uni-mainz.de/tacke/scsi/SCSI2-05.html #define SCSI_DELAY_ARBITRATION_DELAY_NS 2400