mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 10:48:18 +08:00
more
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#
|
#
|
||||||
# Look for GCC-7.5
|
# Look for GCC-9.2
|
||||||
x=`which gcc-7.5 2>/dev/null`
|
x=`which gcc-9.2 2>/dev/null`
|
||||||
if [ -n "$x" ]; then
|
if [ -n "$x" ]; then
|
||||||
gdir=`dirname $x`
|
gdir=`dirname $x`
|
||||||
elif [ -f "/usr/gcc-7.5/bin/gcc" ]; then
|
elif [ -f "/usr/gcc-9.2/bin/gcc" ]; then
|
||||||
gdir="/usr/gcc-7.5/bin"
|
gdir="/usr/gcc-9.2/bin"
|
||||||
else
|
else
|
||||||
echo Cannot find GCC 7.5
|
echo Cannot find GCC 9.2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
Reference in New Issue
Block a user