Add CMPLR options gcc-6 and gcc-7

(works on trusty and xenial)
This commit is contained in:
Ralph Lange
2018-12-13 15:50:04 +01:00
parent 3175ab9a7d
commit fb95b95f4f

View File

@@ -78,6 +78,24 @@ EOF
clang --version
;;
gcc-6)
echo "Host compiler is gcc-6"
cat << EOF >> epics-base/configure/os/CONFIG_SITE.Common.$EPICS_HOST_ARCH
CC = gcc-6
CCC = g++-6
EOF
gcc-6 --version
;;
gcc-7)
echo "Host compiler is gcc-7"
cat << EOF >> epics-base/configure/os/CONFIG_SITE.Common.$EPICS_HOST_ARCH
CC = gcc-7
CCC = g++-7
EOF
gcc-7 --version
;;
*)
echo "Host compiler is default"
gcc --version