summaryrefslogtreecommitdiff
path: root/mk/project.mk.in
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2013-08-13 16:40:37 -0500
committerAustin Seipp <aseipp@pobox.com>2013-08-14 00:42:43 -0500
commit288ca49c93d5bc8fe42f9a823ed6555334762769 (patch)
tree89fb7fc4c680cd434b287165d43e4970938df17e /mk/project.mk.in
parent5fb72555f7b7ab67a33583f33ad9160761ca434f (diff)
downloadhaskell-288ca49c93d5bc8fe42f9a823ed6555334762769.tar.gz
iOS: generate archive files when compiling.
When cross compiling to iOS, we generate archive files which are linked into the final executable. We already *did* generate archive files - just with the wrong suffix. Fixes #8125. Authored-by: Stephen Blackheath <...@blacksapphire.com> Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'mk/project.mk.in')
-rw-r--r--mk/project.mk.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/mk/project.mk.in b/mk/project.mk.in
index 7b25368b38..28692d4cbb 100644
--- a/mk/project.mk.in
+++ b/mk/project.mk.in
@@ -125,11 +125,11 @@ BuildVendor_CPP = @BuildVendor_CPP@
LeadingUnderscore=@LeadingUnderscore@
# Pin a suffix on executables? If so, what (Windows only).
-exeext0=@exeext@
-exeext1=@exeext@
-exeext2=@exeext@
-exeext3=@exeext@
-soext=@soext@
+exeext0=@exeext_host@
+exeext1=@exeext_target@
+exeext2=@exeext_target@
+exeext3=@exeext_target@
+soext=@soext_target@
# Windows_Host=YES if on a Windows platform
ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32)" ""