summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/linking
diff options
context:
space:
mode:
authorZejun Wu <watashi@fb.com>2018-10-17 15:07:07 -0400
committerBen Gamari <ben@smart-cactus.org>2018-10-17 15:07:23 -0400
commit46f2906d1c6e1fb732a90882487479a2ebf19ca1 (patch)
tree19c380c23974204827162df23a96bb15b1f85a9c /testsuite/tests/ghci/linking
parent17b60f18202c9ddeb881a0654e91967506f093f4 (diff)
downloadhaskell-46f2906d1c6e1fb732a90882487479a2ebf19ca1.tar.gz
Fix T15729 in master
Summary: It failed when running ./validate on master T15729 is added by me in D5219 recently, it failed when GHCi is dynamicly linked: ``` Stderr ( T15729 ): /bin/ld.gold: error: bss.o: requires unsupported dynamic reloc 11; recompile with -fPIC collect2: error: ld returned 1 exit status `gcc' failed in phase `Linker'. (Exit code: 1) ``` Test Plan: Both tests pass now. Reviewers: simonmar, bgamari Reviewed By: bgamari Subscribers: rwbarton, carter Differential Revision: https://phabricator.haskell.org/D5235
Diffstat (limited to 'testsuite/tests/ghci/linking')
-rw-r--r--testsuite/tests/ghci/linking/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/ghci/linking/Makefile b/testsuite/tests/ghci/linking/Makefile
index 3ecc3c3447..bfbcf24350 100644
--- a/testsuite/tests/ghci/linking/Makefile
+++ b/testsuite/tests/ghci/linking/Makefile
@@ -137,5 +137,5 @@ T14708:
.PHONY: T15729
T15729:
- "$(TEST_HC)" -c T15729.c -o bss.o
+ "$(TEST_HC)" -fPIC -c T15729.c -o bss.o
echo "main" | "$(TEST_HC)" $(TEST_HC_OPTS_INTERACTIVE) bss.o T15729.hs