[commit: ghc] master: avoid $(CrossCompilerPrefix) for stage2 install (f2685df)
git at git.haskell.org
git at git.haskell.org
Thu Apr 6 09:11:05 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/f2685df3b10e13f142736f28835e9064334bc143/ghc
>---------------------------------------------------------------
commit f2685df3b10e13f142736f28835e9064334bc143
Author: Sergei Trofimovich <slyfox at gentoo.org>
Date: Wed Apr 5 22:31:37 2017 +0100
avoid $(CrossCompilerPrefix) for stage2 install
Suppose we are crossbuilding ghc (when ghc-stage2
is a normal compiler for $target):
For this case 'make install' should install unprefixed
stage2 'ghc' and not '$(CorssCompilePrefix)-ghc'.
That way cross-built ghc is installable and
usable on target as if it would be built natively
on a target.
Signed-off-by: Sergei Trofimovich <slyfox at gentoo.org>
>---------------------------------------------------------------
f2685df3b10e13f142736f28835e9064334bc143
mk/config.mk.in | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/mk/config.mk.in b/mk/config.mk.in
index 4d5d82a..5e274bb 100644
--- a/mk/config.mk.in
+++ b/mk/config.mk.in
@@ -530,7 +530,7 @@ SUPPORTS_THIS_UNIT_ID = @SUPPORTS_THIS_UNIT_ID@
# needs to know which gcc you're using in order to perform its tests.
GccVersion = @GccVersion@
-CrossCompilePrefix = @CrossCompilePrefix@
+
# TargetPlatformFull retains the string passed to configure so we have it in
# the necessary format to pass to libffi's configure.
TargetPlatformFull = @TargetPlatformFull@
@@ -567,6 +567,11 @@ CrossCompiling = @CrossCompiling@
# See Note [Stage1Only vs stage=1]
Stage1Only = NO
+# Installed tools prefix:
+# we add prefix to crosscompiler GHC only (ghc-stage1),
+# not cross-built GHC (not ghc-stage2).
+CrossCompilePrefix = $(if $(filter YES,$(Stage1Only)), at CrossCompilePrefix@,)
+
# Install stage 2 by default, or stage 1 in the cross compiler
# case. Can be changed to 3
INSTALL_GHC_STAGE= $(if $(filter YES,$(Stage1Only)),1,2)
More information about the ghc-commits
mailing list