We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CIBB_64b
1 parent 5d0611e commit ea43f16Copy full SHA for ea43f16
build-scripts/CI/CIBB_64b
@@ -71,11 +71,15 @@ else
71
exit
72
fi
73
74
-# exit if GCC < 8.3.0 for buster
75
-if [ "$RPIOS_TYPE" = "buster" ] && [ "$GCC_VERSION" \< "8.3.0" ]; then
+# exit if not valid GCC
+if [ "$RPIOS_TYPE" = "buster" ] && [ "$GCC_VERSION" != "8.3.0" ]; then
76
echo "Invalid GCC for buster: $GCC_VERSION!"
77
78
79
+if [ "$RPIOS_TYPE" = "stretch" ] && [ "$GCC_VERSION" != "6.3.0" ]; then
80
+ echo "Invalid GCC for stretch: $GCC_VERSION!"
81
+ exit
82
+fi
83
84
#collect build directory if not defined
85
if [ "$BUILDDIR" = "" ]; then
0 commit comments