diff options
author | Tamar Christina <tamar@zhox.com> | 2016-09-01 21:30:07 +0100 |
---|---|---|
committer | Tamar Christina <tamar@zhox.com> | 2016-09-01 21:31:52 +0100 |
commit | e5ecb2010514405ac1b9b1285a8a65c00a5fd4e0 (patch) | |
tree | 866ae612180fb7fab7af9281d8f43980ec6718e1 /testsuite/tests/rts/Makefile | |
parent | f233f00b1915ac6c0a200b8017a9f07deefd401e (diff) | |
download | haskell-e5ecb2010514405ac1b9b1285a8a65c00a5fd4e0.tar.gz |
Added support for deprecated POSIX functions on Windows.
Summary:
With the introduction of 8.0.1 We've stopped supporting in GHCi
the use of POSIX functions under their deprecated names on Windows.
This to be compatible with object and libraries from the most
popular compilers on the platform (Microsoft and Intel compilers).
However this brings a confusing disparity between the compiled and
interpreted behavior since MingW-W64 does support the deprecated names.
Also It seems clear that package writers won't update their packages to
properly support Windows. As such I have added redirects in the RTS
for the deprecated functions as listed on
https://msdn.microsoft.com/en-us/library/ms235384.aspx.
This won't export the functions (as in, they won't be in the symbol table
of compiled code for the RTS.) but we inject them into the symbol table
of the dynamic linker at startup.
Test Plan:
./validate
and
make test TEST="ffi017 ffi021"
Reviewers: thomie, simonmar, RyanGlScott, bgamari, austin, hvr, erikd
Reviewed By: simonmar, bgamari
Subscribers: RyanGlScott, #ghc_windows_task_force
Differential Revision: https://phabricator.haskell.org/D2500
GHC Trac Issues: #12209, #12497, #12496
Diffstat (limited to 'testsuite/tests/rts/Makefile')
-rw-r--r-- | testsuite/tests/rts/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/tests/rts/Makefile b/testsuite/tests/rts/Makefile index d3231b862c..94f38fa73d 100644 --- a/testsuite/tests/rts/Makefile +++ b/testsuite/tests/rts/Makefile @@ -168,3 +168,7 @@ T11788: "$(TEST_HC)" -c T11788.c -o T11788_obj.o "$(AR)" rsT libT11788.a T11788_obj.o 2> /dev/null echo main | "$(TEST_HC)" $(filter-out -rtsopts, $(TEST_HC_OPTS_INTERACTIVE)) T11788.hs -lT11788 -L"$(PWD)" + + .PHONY: T12497 +T12497: + echo main | "$(TEST_HC)" $(filter-out -rtsopts, $(TEST_HC_OPTS_INTERACTIVE)) T12497.hs |