remove code not required in the new source tree layout
[ghc-hetmet.git] / mk / bootstrap.mk
1 # -----------------------------------------------------------------------------
2 # $Id: bootstrap.mk,v 1.34 2005/05/10 10:29:49 simonmar Exp $
3 #
4 # Makefile rules for booting from .hc files without a driver.
5 #
6 # When booting from .hc files without a compiler installed, we don't have
7 # the benefit of the GHC driver to add all the magic options required to
8 # compile the .hc files, so we have to duplicate that functionality here.
9 # The result is unfortunately ugly, but we don't have another choice.
10
11 # -----------------------------------------------------------------------------
12 # Set the platform-specific options to send to the C compiler.  These should
13 # match the list in machdepCCOpts in ghc/compiler/DriverFlags.hs.
14 #
15
16 PLATFORM_CC_OPTS =
17 PLATFORM_HC_BOOT_CC_OPTS =
18
19 ifeq "$(i386_TARGET_ARCH)" "1"
20 PLATFORM_CC_OPTS += -DDONT_WANT_WIN32_DLL_SUPPORT
21 PLATFORM_HC_BOOT_CC_OPTS += -fno-defer-pop -fomit-frame-pointer 
22 endif
23
24 ifeq "$(hppa_TARGET_ARCH)" "1"
25 PLATFORM_CC_OPTS += -static -D_HPUX_SOURCE
26 endif
27
28 ifeq "$(powerpc_TARGET_ARCH)" "1"
29 PLATFORM_CC_OPTS += -static
30 PLATFORM_HC_BOOT_CC_OPTS += -finhibit-size-directive
31 endif
32
33 ifeq "$(rs6000_TARGET_ARCH)" "1"
34 PLATFORM_CC_OPTS += -static
35 PLATFORM_HC_BOOT_CC_OPTS += -finhibit-size-directive
36 endif
37
38 ifeq "$(mingw32_TARGET_OS)" "1"
39 PLATFORM_CC_OPTS += -mno-cygwin
40 endif
41
42 ifeq "$(alpha_TARGET_ARCH)" "1"
43 PLATFORM_CC_OPTS += -static -w
44 PLATFORM_HC_BOOT_CC_OPTS += -mieee
45 endif
46
47 ifeq "$(sparc_TARGET_ARCH)" "1"
48 PLATFORM_HC_BOOT_CC_OPTS += -w
49 endif
50
51 ifeq "$(BootingFromUnregisterisedHc)" "YES"
52 PLATFORM_HC_BOOT_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER
53 endif
54
55 PLATFORM_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt) 
56
57 HC_BOOT_CC_OPTS = $(PLATFORM_HC_BOOT_CC_OPTS) $(PLATFORM_CC_OPTS) $(CC_OPTS)
58
59 SRC_CC_OPTS += -I$(FPTOOLS_TOP_ABS)/$(GHC_INCLUDE_DIR_REL) -I$(FPTOOLS_TOP_ABS)/libraries/base/include -I$(FPTOOLS_TOP_ABS)/libraries/unix/include -I$(FPTOOLS_TOP_ABS)/libraries/parsec/include
60
61 # C code compiled with UseGhcForCc=YES assumes the existence of certain CPP
62 # symbols defined by GHC (eg. __GLASGOW_HASKELL__), so we better make sure
63 # they're defined.  We can't test $(UseGhcForCc) here though - it isn't defined
64 # yet, so we use lazy expansion.
65 SRC_CC_OPTS += $(if $(findstring YES,$(UseGhcForCc)), $(PLATFORM_HC_BOOT_CC_OPTS) $(PLATFORM_CC_OPTS))
66
67 ifeq "$(GhcWithInterpreter)" "YES"
68 SRC_CC_OPTS += -I$(FPTOOLS_TOP_ABS)/libraries/readline/include
69 endif
70
71 # -----------------------------------------------------------------------------
72 # Linking: we have to give all the libraries explicitly.
73
74 ifeq "$(LeadingUnderscore)" "YES"
75 UNDERSCORE=_
76 else
77 UNDERSCORE=
78 endif
79
80 ifeq "$(HaveLibGmp)" "NO"
81 DASH_L_GHC_RTS_GMP_DIR=-L$(FPTOOLS_TOP_ABS)/$(GHC_RTS_DIR_REL)/gmp
82 endif
83
84 HC_BOOT_LD_OPTS =                               \
85    -L$(FPTOOLS_TOP_ABS)/$(GHC_RTS_DIR_REL)      \
86    $(DASH_L_GHC_RTS_GMP_DIR)                    \
87    -L$(FPTOOLS_TOP_ABS)/libraries/base          \
88    -L$(FPTOOLS_TOP_ABS)/libraries/base/cbits    \
89    -L$(FPTOOLS_TOP_ABS)/libraries/haskell98     \
90    -L$(FPTOOLS_TOP_ABS)/libraries/parsec        \
91    -L$(FPTOOLS_TOP_ABS)/libraries/Cabal
92
93 ifeq "$(GhcWithInterpreter)" "YES"
94 HC_BOOT_LD_OPTS += \
95    -L$(FPTOOLS_TOP_ABS)/libraries/template-haskell      \
96    -L$(FPTOOLS_TOP_ABS)/libraries/readline      \
97    -L$(FPTOOLS_TOP_ABS)/libraries/unix          \
98    -L$(FPTOOLS_TOP_ABS)/libraries/unix/cbits
99 endif
100
101 HC_BOOT_LD_OPTS += \
102    -u "$(UNDERSCORE)GHCziBase_Izh_static_info" \
103    -u "$(UNDERSCORE)GHCziBase_Czh_static_info" \
104    -u "$(UNDERSCORE)GHCziFloat_Fzh_static_info" \
105    -u "$(UNDERSCORE)GHCziFloat_Dzh_static_info" \
106    -u "$(UNDERSCORE)GHCziPtr_Ptr_static_info" \
107    -u "$(UNDERSCORE)GHCziWord_Wzh_static_info" \
108    -u "$(UNDERSCORE)GHCziInt_I8zh_static_info" \
109    -u "$(UNDERSCORE)GHCziInt_I16zh_static_info" \
110    -u "$(UNDERSCORE)GHCziInt_I32zh_static_info" \
111    -u "$(UNDERSCORE)GHCziInt_I64zh_static_info" \
112    -u "$(UNDERSCORE)GHCziWord_W8zh_static_info" \
113    -u "$(UNDERSCORE)GHCziWord_W16zh_static_info" \
114    -u "$(UNDERSCORE)GHCziWord_W32zh_static_info" \
115    -u "$(UNDERSCORE)GHCziWord_W64zh_static_info" \
116    -u "$(UNDERSCORE)GHCziStable_StablePtr_static_info" \
117    -u "$(UNDERSCORE)GHCziBase_Izh_con_info" \
118    -u "$(UNDERSCORE)GHCziBase_Czh_con_info" \
119    -u "$(UNDERSCORE)GHCziFloat_Fzh_con_info" \
120    -u "$(UNDERSCORE)GHCziFloat_Dzh_con_info" \
121    -u "$(UNDERSCORE)GHCziPtr_Ptr_con_info" \
122    -u "$(UNDERSCORE)GHCziStable_StablePtr_con_info" \
123    -u "$(UNDERSCORE)GHCziBase_False_closure" \
124    -u "$(UNDERSCORE)GHCziBase_True_closure" \
125    -u "$(UNDERSCORE)GHCziPack_unpackCString_closure" \
126    -u "$(UNDERSCORE)GHCziIOBase_stackOverflow_closure" \
127    -u "$(UNDERSCORE)GHCziIOBase_heapOverflow_closure" \
128    -u "$(UNDERSCORE)GHCziIOBase_NonTermination_closure" \
129    -u "$(UNDERSCORE)GHCziIOBase_BlockedOnDeadMVar_closure" \
130    -u "$(UNDERSCORE)GHCziIOBase_Deadlock_closure" \
131    -u "$(UNDERSCORE)GHCziWeak_runFinalizzerBatch_closure" \
132    -u "$(UNDERSCORE)__stginit_Prelude"
133
134
135 HC_BOOT_LIBS =
136
137 ifeq "$(GhcWithInterpreter)" "YES"
138 HC_BOOT_LIBS += -lHSreadline -lHStemplate-haskell -lHSunix -lHSunix_cbits
139 endif
140
141 HC_BOOT_LIBS +=  -lHSCabal -lHShaskell98 -lHSbase -lHSbase_cbits -lHSparsec -lHSrts -lgmp -lm $(EXTRA_HC_BOOT_LIBS)
142
143 ifeq "$(GhcLibsWithReadline)" "YES"
144 HC_BOOT_LIBS += $(patsubst %, -l%, $(LibsReadline))
145 endif
146
147 ifeq "$(HaveLibDL)" "YES"
148 HC_BOOT_LIBS += -ldl
149 endif