blob: 13faf9f17075ca318c3857d1825b844ec139f001 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
TOP=..
include $(TOP)/mk/boilerplate.mk
# -----------------------------------------------------------------------------
# Compile GMP only if we don't have it already
#
# We use GMP's own configuration stuff, because it's all rather hairy
# and not worth re-implementing in our Makefile framework.
ifneq "$(HaveLibGmp)" "YES"
ifneq "$(HaveFrameworkGMP)" "YES"
PLATFORM := $(shell echo $(HOSTPLATFORM) | sed 's/i[567]86/i486/g')
# 2007-09-26
# set -o igncr
# is not a valid command on non-Cygwin-systems.
# Let it fail silently instead of aborting the build.
#
# 2007-07-05
# We do
# set -o igncr; export SHELLOPTS
# here as otherwise checking the size of limbs
# makes the build fall over on Cygwin. See the thread
# http://www.cygwin.com/ml/cygwin/2006-12/msg00011.html
# for more details.
# 2007-07-05
# Passing
# as_ln_s='cp -p'
# isn't sufficient to stop cygwin using symlinks the mingw gcc can't
# follow, as it isn't used consistently. Instead we put an ln.bat in
# path that always fails.
GMP_TARBALL := $(firstword $(wildcard gmp*.tar.gz))
GMP_DIR := $(subst .tar.gz,,$(GMP_TARBALL))
BMP_BUILD_DIR := build
ifeq "$(findstring dyn, $(GhcRTSWays))" "dyn"
BUILD_SHARED=yes
else
BUILD_SHARED=no
endif
boot :: stamp.gmp.static
all :: gmp.h libgmp.a
install :: gmp.h libgmp.a
INSTALL_HEADERS += gmp.h
INSTALL_LIBS += libgmp.a
ifeq "$(BUILD_SHARED)" "yes"
boot :: stamp.gmp.shared
all :: libgmp-3.dll libgmp.dll.a
install :: libgmp-3.dll libgmp.dll.a
INSTALL_LIBS += libgmp.dll.a
INSTALL_PROGS += libgmp-3.dll
endif
stamp.gmp.static:
$(RM) -rf $(GMP_DIR) gmpbuild
$(TAR) -zxf $(GMP_TARBALL)
mv $(GMP_DIR) gmpbuild
chmod +x ln
(set -o igncr 2>/dev/null) && set -o igncr; export SHELLOPTS; \
export PATH=`pwd`:$$PATH; \
cd gmpbuild && \
CC=$(WhatGccIsCalled) $(SHELL) configure \
--enable-shared=no --host=$(PLATFORM) --build=$(PLATFORM)
touch $@
stamp.gmp.shared:
$(RM) -rf $(GMP_DIR) gmpbuild-shared
$(TAR) -zxf $(GMP_TARBALL)
mv $(GMP_DIR) gmpbuild-shared
chmod +x ln
(set -o igncr 2>/dev/null) && set -o igncr; export SHELLOPTS; \
export PATH=`pwd`:$$PATH; \
cd gmpbuild-shared && \
CC=$(WhatGccIsCalled) $(SHELL) configure \
--enable-shared=yes --disable-static --host=$(PLATFORM) --build=$(PLATFORM)
touch $@
gmp.h: stamp.gmp.static
$(CP) gmpbuild/gmp.h .
libgmp.a: stamp.gmp.static
$(MAKE) -C gmpbuild MAKEFLAGS=
$(CP) gmpbuild/.libs/libgmp.a .
$(RANLIB) libgmp.a
libgmp-3.dll: stamp.gmp.shared
$(MAKE) -C gmpbuild-shared MAKEFLAGS=
$(CP) gmpbuild-shared/.libs/libgmp-3.dll .
libgmp.dll.a: libgmp-3.dll
$(CP) gmpbuild-shared/.libs/libgmp.dll.a .
endif
endif
# GMP takes a long time to build, but changes rarely. Hence we don't
# bother cleaning it before validating, because that adds a
# significant overhead to validation.
ifeq "$(Validating)" "NO"
clean distclean maintainer-clean ::
$(RM) -f stamp.gmp.static stamp.gmp.shared
$(RM) -rf gmpbuild
$(RM) -rf gmpbuild-shared
endif
#-----------------------------------------------------------------------------
#
# binary-dist
include $(TOP)/mk/target.mk
binary-dist:
@:
ifneq "$(HaveLibGmp)" "YES"
ifneq "$(HaveFrameworkGMP)" "YES"
$(INSTALL_DIR) $(BIN_DIST_DIR)/gmp
touch $(BIN_DIST_DIR)/gmp/$(GMP_TARBALL)
$(INSTALL_DATA) Makefile $(BIN_DIST_DIR)/gmp/
ifneq "$(INSTALL_PROGS)" ""
$(INSTALL_DATA) $(INSTALL_PROGS) $(BIN_DIST_DIR)/gmp/
endif
ifneq "$(INSTALL_LIBS)" ""
$(INSTALL_DATA) $(INSTALL_LIBS) $(BIN_DIST_DIR)/gmp/
endif
ifneq "$(INSTALL_HEADERS)" ""
$(INSTALL_HEADER) $(INSTALL_HEADERS) $(BIN_DIST_DIR)/gmp/
endif
endif
endif
|