diff options
author | simonmar <unknown> | 2001-05-25 10:53:59 +0000 |
---|---|---|
committer | simonmar <unknown> | 2001-05-25 10:53:59 +0000 |
commit | 85cfa3bba9bdab7d71529c7a959480842fc13368 (patch) | |
tree | 40308f0a684e5829511e854b036515b7c23c0e02 /mk/bootstrap.mk | |
parent | 56aacd2c96ca9ac89eba2e687037d9661d3e1c73 (diff) | |
download | haskell-85cfa3bba9bdab7d71529c7a959480842fc13368.tar.gz |
[project @ 2001-05-25 10:53:59 by simonmar]
Add -lm to HC_BOOT_LIBS
*** MAYBE MERGE ***
Diffstat (limited to 'mk/bootstrap.mk')
-rw-r--r-- | mk/bootstrap.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bootstrap.mk b/mk/bootstrap.mk index 0ef7ccb350..e712ed54e3 100644 --- a/mk/bootstrap.mk +++ b/mk/bootstrap.mk @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: bootstrap.mk,v 1.10 2001/05/25 10:50:27 simonmar Exp $ +# $Id: bootstrap.mk,v 1.11 2001/05/25 10:53:59 simonmar Exp $ # # Makefile rules for booting from .hc files without a driver. # @@ -105,7 +105,7 @@ HC_BOOT_LD_OPTS = \ -u "PrelMain_mainIO_closure" \ -u "__init_PrelMain" -HC_BOOT_LIBS = -lHStext -lHStext_cbits -lHSutil -lHSposix -lHSposix_cbits -lHSconcurrent -lHSlang -lHSlang_cbits -lHSstd -lHSstd_cbits -lHSrts -lgmp $(EXTRA_HC_BOOT_LIBS) +HC_BOOT_LIBS = -lHStext -lHStext_cbits -lHSutil -lHSposix -lHSposix_cbits -lHSconcurrent -lHSlang -lHSlang_cbits -lHSstd -lHSstd_cbits -lHSrts -lgmp -lm $(EXTRA_HC_BOOT_LIBS) ifeq "$(GhcLibsWithReadline)" "YES" HC_BOOT_LIBS += $(patsubst %, -l%, $(LibsReadline)) |