Skip to content
Snippets Groups Projects
Commit 33cae236 authored by Gleb Popov's avatar Gleb Popov
Browse files

Allow building foreign libraries on FreeBSD

parent f2f92502
No related branches found
No related tags found
No related merge requests found
......@@ -2871,6 +2871,7 @@ checkForeignLibSupported comp platform flib = go (compilerFlavor comp)
goGhcPlatform :: Platform -> Maybe String
goGhcPlatform (Platform _ OSX) = goGhcOsx (foreignLibType flib)
goGhcPlatform (Platform _ Linux) = goGhcLinux (foreignLibType flib)
goGhcPlatform (Platform _ FreeBSD) = goGhcLinux (foreignLibType flib)
goGhcPlatform (Platform I386 Windows) = goGhcWindows (foreignLibType flib)
goGhcPlatform (Platform X86_64 Windows) = goGhcWindows (foreignLibType flib)
goGhcPlatform _ =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment