Skip to content

Commit

Permalink
[project @ 2002-04-02 10:27:28 by simonpj]
Browse files Browse the repository at this point in the history
Comments
  • Loading branch information
simonpj committed Apr 2, 2002
1 parent 8f3023c commit 5696ec9
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions mk/config.mk.in
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))

#------------------------------------------------------------------------------
# Options for GHC's Prelude
# Options for Libraries

# What extra ways to build the libraries in
# In addition to the normal sequential way, the default is to also build
Expand Down Expand Up @@ -262,6 +262,21 @@ DLLized=@EnableWin32DLLs@
#
MinimalUnixDeps=@MinimalUnixDeps@

# Strip local symbols from libraries? This can make the libraries smaller,
# but makes debugging somewhat more difficult. Doesn't work with all ld's.
#
StripLibraries=NO


# ----------------------------------------------------------------------------
# Object-file splitting
#
# Set SplitObjs=YES or NO in your build.mk
#
# Don't use -split-objs in in GhcLibHcOpts, because the build
# system needs to do other special magic if you are
# doing object-file splitting

# Don't split object files for libs if we're building DLLs, or booting from
# .hc files.
SplitObjs=YES
Expand All @@ -276,11 +291,6 @@ ifeq "$(GhcUnregisterised)" "YES"
SplitObjs=NO
endif

# Strip local symbols from libraries? This can make the libraries smaller,
# but makes debugging somewhat more difficult. Doesn't work with all ld's.
#
StripLibraries=NO

# ----------------------------------------------------------------------------
# Options for GHC's RTS

Expand Down

0 comments on commit 5696ec9

Please sign in to comment.