diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-04-30 11:25:57 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-05-01 09:05:13 +0100 |
commit | 8e6b90212a6ee2e9112160db1dec985610204a12 (patch) | |
tree | 556c5b0fd14222ebbcbbb86d08a0746cec4d1047 /testsuite | |
parent | f205f21a847efe4b9c6000d8d1a9612379d3ea9e (diff) | |
download | haskell-8e6b90212a6ee2e9112160db1dec985610204a12.tar.gz |
fix T4464 on Windows
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/dynlibs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/dynlibs/Makefile b/testsuite/tests/dynlibs/Makefile index 6d4f736983..17931d27cd 100644 --- a/testsuite/tests/dynlibs/Makefile +++ b/testsuite/tests/dynlibs/Makefile @@ -19,7 +19,7 @@ T4464: $(RM) T4464H_stub.c T4464H_stub.h T4464H_stub.o $(RM) HS4464.dll HS4464.dll.a t4464.exe '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -shared T4464H.hs T4464B.c -optc-DRTSOPTS=RtsOptsSafeOnly -o HS4464.dll - '$(TEST_HC)' $(TEST_HC_OPTS) -v0 T4464C.c HS4464.dll.a -o t4464.exe -no-hs-main + '$(TEST_HC)' $(filter-out -rtsopts,$(TEST_HC_OPTS)) -v0 T4464C.c HS4464.dll.a -o t4464.exe -no-hs-main -./t4464.exe echo "=====" echo "=====" >&2 @@ -27,7 +27,7 @@ T4464: $(RM) T4464H_stub.c T4464H_stub.h T4464H_stub.o $(RM) HS4464.dll HS4464.dll.a t4464.exe '$(TEST_HC)' $(TEST_HC_OPTS) -v0 -shared T4464H.hs T4464B.c -optc-DRTSOPTS=RtsOptsAll -o HS4464.dll - '$(TEST_HC)' $(TEST_HC_OPTS) -v0 T4464C.c HS4464.dll.a -o t4464.exe -no-hs-main + '$(TEST_HC)' $(filter-out -rtsopts,$(TEST_HC_OPTS)) -v0 T4464C.c HS4464.dll.a -o t4464.exe -no-hs-main ./t4464.exe .PHONY: T5373 |