File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ Other enhancements:
5454* Better error messages when creating or building packages which alias
5555 wired-in packages. See
5656 [ #3172 ] ( https://github.com/commercialhaskell/stack/issues/3172 ) .
57+ * MinGW bin folder now is searched for dynamic libraries. See [ #3126 ] ( https://github.com/commercialhaskell/stack/issues/3126 )
5758
5859Bug fixes:
5960
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ extraDirs tool = do
142142 ]
143143 , edLib =
144144 [ dir </> $ (mkRelDir " mingw32" ) </> $ (mkRelDir " lib" )
145+ , dir </> $ (mkRelDir " mingw32" ) </> $ (mkRelDir " bin" )
145146 ]
146147 }
147148 (Platform Cabal. X86_64 Cabal. Windows , " msys2" ) -> return mempty
@@ -155,6 +156,7 @@ extraDirs tool = do
155156 ]
156157 , edLib =
157158 [ dir </> $ (mkRelDir " mingw64" ) </> $ (mkRelDir " lib" )
159+ , dir </> $ (mkRelDir " mingw64" ) </> $ (mkRelDir " bin" )
158160 ]
159161 }
160162 (_, isGHC -> True ) -> return mempty
You can’t perform that action at this time.
0 commit comments