Add a kludge to fix building shared libs
[ghc-hetmet.git] / rules / build-package-way.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13
14 define build-package-way # $1 = dir, $2 = distdir, $3 = way, $4 = stage
15
16 $(call distdir-way-opts,$1,$2,$3)
17 $(call hs-suffix-rules,$1,$2,$3)
18 $$(foreach dir,$$($1_$2_HS_SRC_DIRS),\
19   $$(eval $$(call hs-suffix-rules-srcdir,$1,$2,$3,$$(dir))))
20
21 $(call hs-objs,$1,$2,$3)
22
23 # The .a/.so library file, indexed by two different sets of vars:
24 # the first is indexed by the dir, distdir and way
25 # the second is indexed by the package id, distdir and way
26 $1_$2_$3_LIB = $1/$2/build/libHS$$($1_PACKAGE)-$$($1_$2_VERSION)$$($3_libsuf)
27 $$($1_PACKAGE)-$($1_$2_VERSION)_$2_$3_LIB = $$($1_$2_$3_LIB)
28
29 # All the .a/.so library file dependencies for this library
30 $1_$2_$3_DEPS_LIBS=$$(foreach dep,$$($1_$2_DEPS),$$($$(dep)_$2_$3_LIB))
31
32 ifneq "$$(BootingFromHc)" "YES"
33 $1_$2_$3_MKSTUBOBJS = $$(FIND) $1/$2/build -name "*_stub.$$($3_osuf)" -print
34 # HACK ^^^ we tried to use $(wildcard), but apparently it fails due to
35 # make using cached directory contents, or something.
36 else
37 $1_$2_$3_MKSTUBOBJS = true
38 $1_$2_$3_C_OBJS += $$(shell $$(FIND) $1/$2/build -name "*_stub.c" -print | sed 's/c$$$$/o/')
39 endif
40
41 ifeq "$3" "dyn"
42 # Link a dynamic library
43 $$($1_$2_$3_LIB) : $$($1_$2_$3_HS_OBJS) $$($1_$2_dyn_C_OBJS) $$($1_$2_dyn_S_OBJS) $$(ALL_RTS_LIBS) $$($1_$2_$3_DEPS_LIBS) $$($1_$2_EXTRA_OBJS)
44         "$$($1_$2_HC)" $$($1_$2_dyn_C_OBJS) $$($1_$2_dyn_S_OBJS) $$($1_$2_$3_HS_OBJS) \
45          `$$($1_$2_$3_MKSTUBOBJS)` $$($1_$2_EXTRA_OBJS) \
46          -shared -dynamic -dynload deploy \
47          -no-auto-link-packages $$(addprefix -package,$$($1_$2_DEPS)) \
48          -o $$@
49
50 # This is a kludge. The .dyn_hi files currently depend on the .dyn_hi
51 # files of modules that they import. But they actually want the .hi
52 # files of modules from another package.This we make the .dyn_hi files
53 # depend on the .hi files so we are sure that they exist and are
54 # up-to-date.
55 $$(foreach m,$$(addprefix $1/$2/build/,$$($1_$2_SLASH_MODS)),\
56 $$(eval $$(call mkdep,$$m.$$($3_hisuf),$$m.hi)) \
57 )
58
59 else
60 # Build the ordinary .a library
61 ifeq "$$($1_$2_SplitObjs)" "YES"
62 $$($1_$2_$3_LIB) : $$($1_$2_$3_HS_OBJS) $$($1_$2_$3_CMM_OBJS) $$($1_$2_$3_C_OBJS) $$($1_$2_$3_S_OBJS) $$($1_$2_EXTRA_OBJS)
63         "$$(RM)" $$(RM_OPTS) $$@
64         (echo $$($1_$2_$3_CMM_OBJS) $$($1_$2_$3_C_OBJS) $$($1_$2_$3_S_OBJS) `$$($1_$2_$3_MKSTUBOBJS)` $$($1_$2_EXTRA_OBJS); $$(FIND) $$(patsubst %.$$($3_osuf),%_$$($3_osuf)_split,$$($1_$2_$3_HS_OBJS)) -name '*.$$($3_osuf)' -print) | $$(XARGS) $$(AR) $$(EXTRA_AR_ARGS) $$@
65 else
66 $$($1_$2_$3_LIB) : $$($1_$2_$3_HS_OBJS) $$($1_$2_$3_CMM_OBJS) $$($1_$2_$3_C_OBJS) $$($1_$2_$3_S_OBJS) $$($1_$2_EXTRA_OBJS)
67         "$$(RM)" $$(RM_OPTS) $$@
68         echo $$($1_$2_$3_CMM_OBJS) $$($1_$2_$3_C_OBJS) $$($1_$2_$3_S_OBJS) $$($1_$2_$3_HS_OBJS) `$$($1_$2_$3_MKSTUBOBJS)` $$($1_$2_EXTRA_OBJS) | $$(XARGS) $$(AR) $$(EXTRA_AR_ARGS) $$@
69 endif
70 endif
71
72 $(call all-target,$1_$2,all_$1_$2_$3)
73 $(call all-target,$1_$2_$3,$$($1_$2_$3_LIB))
74
75 # Don't put bootstrapping packages in the bindist
76 ifneq "$4" "0"
77 BINDIST_HI += $$($1_$2_$3_HI)
78 BINDIST_LIBS += $$($1_$2_$3_LIB)
79 endif
80
81 # Build the GHCi library
82 ifeq "$3" "v"
83 $1_$2_GHCI_LIB = $1/$2/build/HS$$($1_PACKAGE)-$$($1_$2_VERSION).$$($3_osuf)
84 # Don't put bootstrapping packages in the bindist
85 ifneq "$4" "0"
86 BINDIST_LIBS += $$($1_$2_GHCI_LIB)
87 endif
88 $$($1_$2_GHCI_LIB) : $$($1_$2_$3_HS_OBJS) $$($1_$2_$3_CMM_OBJS) $$($1_$2_$3_C_OBJS) $$($1_$2_$3_S_OBJS) $$($1_$2_EXTRA_OBJS)
89         "$$(LD)" -r -o $$@ $$(EXTRA_LD_OPTS) $$($1_$2_$3_HS_OBJS) $$($1_$2_$3_CMM_OBJS) $$($1_$2_$3_C_OBJS) $$($1_$2_$3_S_OBJS) `$$($1_$2_$3_MKSTUBOBJS)` $$($1_$2_EXTRA_OBJS)
90
91 $(call all-target,$1_$2,$$($1_$2_GHCI_LIB))
92 endif
93
94 endef
95