Fix detection of Ubuntu/MinGW version
For downright incomprehensible reasons the Ubuntu/MinGW folks have decided that MinGW on Ubuntu should no longer report the compiler's version as '<major>.<minor>', but instead as '<major>-win32', which of course breaks any script that attempts to read version numbers. This results in MinGW compilation of gnu-efi on Ubuntu producing the error: /bin/sh: 1: [: Illegal number: 10-win32 Fix this by replacing any '-win32' in the -dumpversion report with '.0' so that we get an approximate version number back again. Signed-off-by: Pete Batard <pete@akeo.ie>
This commit is contained in:
parent
630ea144cb
commit
b74c52f8ba
@ -97,8 +97,8 @@ ifeq ($(ARCH),mips64)
|
||||
override ARCH := mips64el
|
||||
endif
|
||||
|
||||
GCCVERSION := $(shell $(CC) -dumpversion | cut -f1 -d.)
|
||||
GCCMINOR := $(shell $(CC) -dumpversion | cut -f2 -d.)
|
||||
GCCVERSION := $(shell $(CC) -dumpversion | sed -e 's/-win32/.0/' | cut -f1 -d.)
|
||||
GCCMINOR := $(shell $(CC) -dumpversion | sed -e 's/-win32/.0/' | cut -f2 -d.)
|
||||
USING_CLANG := $(shell $(CC) -v 2>&1 | grep -q 'clang version' && echo clang)
|
||||
|
||||
# Rely on GCC MS ABI support?
|
||||
|
Loading…
Reference in New Issue
Block a user