# Settings for using the libghccompat.a library elsewhere in the build # tree: this file is just included into Makefiles, see # utils/ghc-pkg/Makefile for example. # # This is a poor-mans package, but simpler because we don't # have to deal with variations in the package support of different # versions of GHC. ifneq "$(UseStage1)" "YES" SRC_HC_OPTS += -DUSING_COMPAT # Use libghccompat.a: SRC_HC_OPTS += -i$(GHC_COMPAT_DIR) SRC_LD_OPTS += -L$(GHC_COMPAT_DIR) -lghccompat ifeq "$(ghc_ge_607)" "YES" SRC_HC_OPTS += -package directory SRC_HC_OPTS += -package pretty SRC_HC_OPTS += -package containers endif # And similarly for when booting from .hc files: HC_BOOT_LD_OPTS += -L$(GHC_COMPAT_DIR) HC_BOOT_LIBS += -lghccompat ifeq "$(Windows)" "YES" # not very nice, but required for -lghccompat on Windows SRC_LD_OPTS += -lshell32 HC_BOOT_LIBS += -lshell32 endif # This is horrible. We ought to be able to omit the entire directory # from mkDependHS. SRC_MKDEPENDHS_OPTS += \ -optdep--exclude-module=Compat.Unicode \ -optdep--exclude-module=Trace.Hpc.Mix \ -optdep--exclude-module=Trace.Hpc.Tix \ -optdep--exclude-module=Trace.Hpc.Util PACKAGE_CABAL = PACKAGE_HPC = else PACKAGE_CABAL = -package Cabal PACKAGE_HPC = -package hpc endif