diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-11-04 15:03:55 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-11-10 13:16:03 -0500 |
commit | 9030d8e4dc321dbcd32baae33f150b4e7c8ed141 (patch) | |
tree | 6876eb9a516566eae34046ad716ea9a7ceea3094 /mk/config.mk.in | |
parent | 816d2e415a32651ed6876c19adb6d33b94c08864 (diff) | |
download | haskell-9030d8e4dc321dbcd32baae33f150b4e7c8ed141.tar.gz |
configure: Pass HC_OPTS_STAGEx to build system
Test Plan: Try `./configure HC_OPTS_STAGE0=-foobar` and watch it fail
Reviewers: austin, hvr
Subscribers: thomie, erikd
Differential Revision: https://phabricator.haskell.org/D2674
Diffstat (limited to 'mk/config.mk.in')
-rw-r--r-- | mk/config.mk.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 2163643c58..35c492f333 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -618,6 +618,9 @@ CONF_LD_LINKER_OPTS_STAGE2 = @CONF_LD_LINKER_OPTS_STAGE2@ CONF_CPP_OPTS_STAGE0 = @CONF_CPP_OPTS_STAGE0@ CONF_CPP_OPTS_STAGE1 = @CONF_CPP_OPTS_STAGE1@ CONF_CPP_OPTS_STAGE2 = @CONF_CPP_OPTS_STAGE2@ +CONF_HC_OPTS_STAGE0 = @CONF_HC_OPTS_STAGE0@ +CONF_HC_OPTS_STAGE1 = @CONF_HC_OPTS_STAGE1@ +CONF_HC_OPTS_STAGE2 = @CONF_HC_OPTS_STAGE2@ # The .hsc files aren't currently safe for cross-compilation on Windows: # libraries\haskeline\.\System\Console\Haskeline\Backend\Win32.hsc:160 |