mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-16 03:48:08 +00:00
fix qemu build script for Arch Linux ($CROSS)
This commit is contained in:
@ -364,6 +364,10 @@ ORIG_CROSS="$CROSS"
|
||||
|
||||
if [ "$ORIG_CROSS" = "" ]; then
|
||||
CROSS=$CPU_TARGET-linux-gnu-gcc
|
||||
if ! command -v "$CROSS" > /dev/null
|
||||
then # works on Arch Linux
|
||||
CROSS=$CPU_TARGET-pc-linux-gnu-gcc
|
||||
fi
|
||||
fi
|
||||
|
||||
if ! command -v "$CROSS" > /dev/null
|
||||
|
Reference in New Issue
Block a user