We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f9250 commit 33cae23Copy full SHA for 33cae23
Cabal/src/Distribution/Simple/Configure.hs
@@ -2871,6 +2871,7 @@ checkForeignLibSupported comp platform flib = go (compilerFlavor comp)
2871
goGhcPlatform :: Platform -> Maybe String
2872
goGhcPlatform (Platform _ OSX) = goGhcOsx (foreignLibType flib)
2873
goGhcPlatform (Platform _ Linux) = goGhcLinux (foreignLibType flib)
2874
+ goGhcPlatform (Platform _ FreeBSD) = goGhcLinux (foreignLibType flib)
2875
goGhcPlatform (Platform I386 Windows) = goGhcWindows (foreignLibType flib)
2876
goGhcPlatform (Platform X86_64 Windows) = goGhcWindows (foreignLibType flib)
2877
goGhcPlatform _ =
0 commit comments