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.
2 parents 1470b7e + 9a45b51 commit c248442Copy full SHA for c248442
Makefile.system
@@ -15,8 +15,6 @@ ifeq ($(HOSTARCH), amd64)
15
HOSTARCH=x86_64
16
endif
17
18
-HAVE_GAS := $(shell as -v < /dev/null 2>&1 | grep GNU 2>&1 >/dev/null)
19
-
20
# Catch conflicting usage of ARCH in some BSD environments
21
ifeq ($(ARCH), amd64)
22
override ARCH=x86_64
@@ -368,6 +366,8 @@ GCCMINORVERSIONGTEQ2 := $(shell expr `$(CC) $(GCCDUMPVERSION_PARAM) | cut -f2 -d
368
366
GCCMINORVERSIONGTEQ7 := $(shell expr `$(CC) $(GCCDUMPVERSION_PARAM) | cut -f2 -d.` \>= 7)
369
367
370
+HAVE_GAS := $(shell $(AS) -v < /dev/null 2>&1 | grep GNU 2>&1 >/dev/null ; echo $$?)
+
371
#
372
# OS dependent settings
373
0 commit comments