diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-08-13 17:06:39 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-08-13 17:06:39 +0000 |
commit | 35cfa92c5a79f645279b4f4c700bae2f69de961b (patch) | |
tree | 5bfb28a76632c46e21311e506fcd85823a8960b1 | |
parent | 498f7d8ddd4f60c8c8226bb6e672be04ab4c18e0 (diff) | |
download | edk2-35cfa92c5a79f645279b4f4c700bae2f69de961b.tar.gz edk2-35cfa92c5a79f645279b4f4c700bae2f69de961b.tar.bz2 edk2-35cfa92c5a79f645279b4f4c700bae2f69de961b.zip |
EmulatorPkg: Support GCC47 toolchain
When GCC >= 4.7 is detected, use the GCC47 toolchain.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
[jordan.l.justen@intel.com: reword commit message for EmulatorPkg]
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13629 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | EmulatorPkg/Unix/Host/Host.inf | 1 | ||||
-rwxr-xr-x | EmulatorPkg/build.sh | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/EmulatorPkg/Unix/Host/Host.inf b/EmulatorPkg/Unix/Host/Host.inf index 496bd770b3..3d262a760e 100644 --- a/EmulatorPkg/Unix/Host/Host.inf +++ b/EmulatorPkg/Unix/Host/Host.inf @@ -126,6 +126,7 @@ GCC:*_GCC44_X64_CC_FLAGS = "-DEFIAPI=__attribute__((ms_abi))"
GCC:*_GCC45_X64_CC_FLAGS = "-DEFIAPI=__attribute__((ms_abi))"
GCC:*_GCC46_X64_CC_FLAGS = "-DEFIAPI=__attribute__((ms_abi))"
+ GCC:*_GCC47_X64_CC_FLAGS = "-DEFIAPI=__attribute__((ms_abi))"
GCC:*_*_X64_PP_FLAGS == -m64 -E -x assembler-with-cpp -include $(DEST_DIR_DEBUG)/AutoGen.h
GCC:*_*_X64_ASM_FLAGS == -m64 -c -x assembler -imacros $(DEST_DIR_DEBUG)/AutoGen.h
diff --git a/EmulatorPkg/build.sh b/EmulatorPkg/build.sh index b34d11a7ff..67648f509a 100755 --- a/EmulatorPkg/build.sh +++ b/EmulatorPkg/build.sh @@ -90,6 +90,9 @@ case `uname` in 4.6.*) TARGET_TOOLS=GCC46 ;; + 4.[789].*) + TARGET_TOOLS=GCC47 + ;; *) TARGET_TOOLS=GCC44 ;; |