From: Henk-Jan v. T. <hj...@ch...> - 2015-10-08 13:31:03
|
L.S., I am happy to announce the installation packages for wxHaskell on Windows, and a new version of wxHaskell: 0.92.1.0 So far, the installation of wxHaskell on Windows has been difficult, but now it is just a matter of downloading an installation package[0][1], unzipping it to the directory where you want to have it installed, and clicking on Install.bat. A detailed description can be found at the wxHaskell-for-Windows homepage[2]. The current configuration of the installation packages (one package for 32 bit and one for 64 bit systems), is called Abriline and contains compiled wxWidgets 3.0.2 and all further necessary DLLs. The installation procedure automatically installs the latest version of wxHaskell and can be used for several of the most recent versions of GHC. In case you are wondering where the name Abriline comes from, it is generated by a girls name generator I wrote (in Haskell of course); I selected this name because a search on Internet seems to indicate that the name is brand new. The new version of wxHaskell is released because it solves a bug that could crash an application. What is wxHaskell? ------------------ wxHaskell[3] is a portable and native GUI library for Haskell. The goal of the project is to provide an industrial strength GUI library for Haskell, but without the burden of developing (and maintaining) one ourselves. wxHaskell is therefore built on top of wxWidgets – a comprehensive C++ library that is portable across all major GUI platforms; including GTK, Windows, X11, and MacOS X. Furthermore, it is a mature library (in development since 1992) that supports a wide range of widgets with the native look-and-feel. Links ----- See the homepage of wxHaskell for more information: https://wiki.haskell.org/WxHaskell The packages are: - wxc https://hackage.haskell.org/package/wxc - wxdirect https://hackage.haskell.org/package/wxdirect - wxcore https://hackage.haskell.org/package/wxcore - wx https://hackage.haskell.org/package/wx Regards, Henk-Jan van Tuyl [0] http://sourceforge.net/projects/wxhaskell/files/wxInstall/wxInstall-Abriline-32-0.1.zip/download [1] http://sourceforge.net/projects/wxhaskell/files/wxInstall/wxInstall-Abriline-64-0.1.zip/download [2] https://wiki.haskell.org/WxHaskell/Windows#Installing_the_easy_way [3] https://wiki.haskell.org/WxHaskell -- Folding@home What if you could share your unused computer power to help find a cure? In just 5 minutes you can join the world's biggest networked computer and get us closer sooner. Watch the video. http://folding.stanford.edu/ http://Van.Tuyl.eu/ http://members.chello.nl/hjgtuyl/tourdemonad.html Haskell programming -- |
From: Gregory G. <gu...@mu...> - 2015-11-22 17:59:20
|
Thank you. It all seems to install fine, but then the wxAsteroids test gives an error: The procedure entry point __gxx_personality_sj0 could not be located in the dynamic link library libstdc++6.dll Does this new packaged install also mean we can get rid of environment variables, and their inclusions into Path: wxadditions, wxc_version, wxcfg, wxwin, And trying another simple test also fails: can't load .so/.DLL for: C:\Users\guthrie\AppData\Roaming\cabal\x86_64-windows-ghc-7.10.2\wxc-0.92.1.1-53Gc4hxGAcnJLA3Em3ODj1\wxc.dll (addDLL: could not load DLL) gui :: IO () gui = do f <- frame [text := "First Fix!"] ss <- mapM (\t -> staticText f [text := show t]) [1..10] set f [layout := margin 10 ( row 2 $ map (\x -> (widget x)) ss)] ------------------------------------------- > -----Original Message----- > From: Henk-Jan van Tuyl [mailto:hj...@ch...] > Sent: Thursday, October 08, 2015 8:31 AM > To: ha...@ha...; wxHaskell user mailing list; wxHaskell developer mailing list; Daan > Leijen > Subject: [wxhaskell-users] ANN: wxInstall Abriline and wxHaskell 0.92.1.0 > > > L.S., > > I am happy to announce the installation packages for wxHaskell on Windows, and a new > version of wxHaskell: 0.92.1.0 > > So far, the installation of wxHaskell on Windows has been difficult, but now it is just a > matter of downloading an installation package[0][1], unzipping it to the directory where you > want to have it installed, and clicking on Install.bat. A detailed description can be found at > the wxHaskell-for-Windows homepage[2]. The current configuration of the installation > packages (one package for 32 bit and one for 64 bit systems), is called Abriline and contains > compiled wxWidgets 3.0.2 and all further necessary DLLs. The installation procedure > automatically installs the latest version of wxHaskell and can be used for several of the most > recent versions of GHC. > > In case you are wondering where the name Abriline comes from, it is generated by a girls > name generator I wrote (in Haskell of course); I selected this name because a search on > Internet seems to indicate that the name is brand new. > > The new version of wxHaskell is released because it solves a bug that could crash an > application. > > > What is wxHaskell? > ------------------ > wxHaskell[3] is a portable and native GUI library for Haskell. The goal of the project is to > provide an industrial strength GUI library for Haskell, but without the burden of developing > (and maintaining) one ourselves. > > wxHaskell is therefore built on top of wxWidgets – a comprehensive C++ library that is > portable across all major GUI platforms; including GTK, Windows, X11, and MacOS X. > Furthermore, it is a mature library (in development since 1992) that supports a wide range > of widgets with the native look-and-feel. > > > Links > ----- > See the homepage of wxHaskell for more information: > https://wiki.haskell.org/WxHaskell > > The packages are: > - wxc https://hackage.haskell.org/package/wxc > - wxdirect https://hackage.haskell.org/package/wxdirect > - wxcore https://hackage.haskell.org/package/wxcore > - wx https://hackage.haskell.org/package/wx > > Regards, > Henk-Jan van Tuyl > > > [0] > http://sourceforge.net/projects/wxhaskell/files/wxInstall/wxInstall-Abriline-32-<http://sourceforge.net/projects/wxhaskell/files/wxInstall/wxInstall-Abriline-32-0.1.zip/download> > 0.1.zip/download<http://sourceforge.net/projects/wxhaskell/files/wxInstall/wxInstall-Abriline-32-0.1.zip/download> > [1] > http://sourceforge.net/projects/wxhaskell/files/wxInstall/wxInstall-Abriline-64-<http://sourceforge.net/projects/wxhaskell/files/wxInstall/wxInstall-Abriline-64-0.1.zip/download> > 0.1.zip/download<http://sourceforge.net/projects/wxhaskell/files/wxInstall/wxInstall-Abriline-64-0.1.zip/download> > [2] https://wiki.haskell.org/WxHaskell/Windows#Installing_the_easy_way > [3] https://wiki.haskell.org/WxHaskell > > > > -- > Folding@home > What if you could share your unused computer power to help find a cure? In just 5 minutes > you can join the world's biggest networked computer and get us closer sooner. Watch the > video. > http://folding.stanford.edu/ > > > http://Van.Tuyl.eu/ > http://members.chello.nl/hjgtuyl/tourdemonad.html > Haskell programming > -- > > ------------------------------------------------------------------------------ > _______________________________________________ > wxhaskell-users mailing list > wxh...@li...<mailto:wxh...@li...> > https://lists.sourceforge.net/lists/listinfo/wxhaskell-users |