Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
afcf3b2a
Commit
afcf3b2a
authored
Aug 19, 2009
by
Simon Marlow
Browse files
Rolling back: Add a kludge to fix building shared libs
parent
e9655493
Changes
3
Hide whitespace changes
Inline
Side-by-side
ghc.mk
View file @
afcf3b2a
...
...
@@ -140,9 +140,6 @@ endif
include
rules/all-target.mk
include
rules/clean-target.mk
# Helper macro
include
rules/mkdep.mk
# -----------------------------------------------------------------------------
# The inplace tree
...
...
rules/build-package-way.mk
View file @
afcf3b2a
...
...
@@ -46,16 +46,6 @@ $$($1_$2_$3_LIB) : $$($1_$2_$3_HS_OBJS) $$($1_$2_dyn_C_OBJS) $$($1_$2_dyn_S_OBJS
-shared
-dynamic
-dynload
deploy
\
-no-auto-link-packages
$
$(
addprefix
-package
,
$$
(
$1_$2_DEPS
))
\
-o
$$
@
# This is a kludge. The .dyn_hi files currently depend on the .dyn_hi
# files of modules that they import. But they actually want the .hi
# files of modules from another package.This we make the .dyn_hi files
# depend on the .hi files so we are sure that they exist and are
# up-to-date.
$$(foreach
m,$$(addprefix
$1/$2/build/,$$($1_$2_SLASH_MODS)),\
$$(eval
$$(call
mkdep,$$m.$$($3_hisuf),$$m.hi))
\
)
else
# Build the ordinary .a library
ifeq
"$$($1_$2_SplitObjs)" "YES"
...
...
rules/mkdep.mk
deleted
100644 → 0
View file @
e9655493
# -----------------------------------------------------------------------------
#
# (c) 2009 The University of Glasgow
#
# This file is part of the GHC build system.
#
# To understand how the build system works and how to modify it, see
# http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
# http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
#
# -----------------------------------------------------------------------------
define mkdep # args
:
$1 = target
,
$2 = deps
$1
:
$2
endef
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment