diff options
author | Peter Trommler <ptrommler@acm.org> | 2017-11-06 15:35:30 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-11-06 16:39:20 -0500 |
commit | 59de290928e6903337f31c1f8107ac8a98ea145d (patch) | |
tree | 7c8cd1ebd75bd1bb0f11b0ac24965f82cc4d74f8 /mk/config.mk.in | |
parent | 8613e61de62178e76cd0f8915bd1fbe9c200a039 (diff) | |
download | haskell-59de290928e6903337f31c1f8107ac8a98ea145d.tar.gz |
Update autoconf test for gcc to require 4.7 and up
Fixing #14244 required the newer gcc atomic built-ins that are provided
from 4.7 and up. This updates the test to check for minimum gcc version
4.7.
The version tests for 3.4 (!), 4.4, and 4.6 are no longer needed and can
be removed. This makes the build system simpler.
Test Plan: validate
Reviewers: austin, bgamari, hvr, simonmar
Reviewed By: bgamari
Subscribers: rwbarton, thomie, erikd
Differential Revision: https://phabricator.haskell.org/D4165
Diffstat (limited to 'mk/config.mk.in')
-rw-r--r-- | mk/config.mk.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 92661a32d1..b046abe112 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -522,9 +522,6 @@ GccVersion = @GccVersion@ # TargetPlatformFull retains the string passed to configure so we have it in # the necessary format to pass to libffi's configure. TargetPlatformFull = @TargetPlatformFull@ -GccLT34 = @GccLT34@ -GccLT44 = @GccLT44@ -GccLT46 = @GccLT46@ GccIsClang = @GccIsClang@ CC = @CC@ |