From c29b47b74c7625c66d81405907e303ea66bdb061 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Thu, 24 Jul 2008 15:49:25 +0000 Subject: add --enable-shared to configure, and $(BuildSharedLibs) to the build system --- compiler/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compiler') diff --git a/compiler/Makefile b/compiler/Makefile index d818790d73..5598be6590 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -77,12 +77,13 @@ CONFIGURE_FLAGS_STAGE1 += --flags=-ghci ifeq "$(GhcWithInterpreter)" "YES" CONFIGURE_FLAGS_STAGE2 += --flags=ghci +ifeq "$(BuildSharedLibs)" "YES" +CONFIGURE_FLAGS_STAGE2 += --enable-shared # If we are going to use dynamic libraries instead of .o files for ghci, # we will need to always retain CAFs in the compiler. # ghci/keepCAFsForGHCi contains a GNU C __attribute__((constructor)) # function which sets the keepCAFs flag for the RTS before any Haskell # code is run. -ifeq "$(GhcBuildDylibs)" "YES" CONFIGURE_FLAGS_STAGE2 += --flags=dynlibs else CONFIGURE_FLAGS_STAGE2 += --flags=-dynlibs -- cgit v1.2.1