wxWidgets v3.1.2 is released, and seems to work.

Vincent Sonnier 2019-01-03 20:59:15 +01:00
parent 07c7da37fe
commit 828e5899d9
1 changed files with 7 additions and 7 deletions

@ -45,18 +45,18 @@ liquid-dsp$ sudo ldconfig
_Note: replace '~/Develop/wxWidgets-staticlib' with your own path if you prefer, remember it to be used later when building CubicSDR._ _Note: replace '~/Develop/wxWidgets-staticlib' with your own path if you prefer, remember it to be used later when building CubicSDR._
```bash ```bash
$ wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.1/wxWidgets-3.1.1.tar.bz2 $ wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.2/wxWidgets-3.1.2.tar.bz2
[ downloading.. ] [ downloading.. ]
$ tar -xvjf wxWidgets-3.1.1.tar.bz2 $ tar -xvjf wxWidgets-3.1.2.tar.bz2
[ unpacking.. ] [ unpacking.. ]
$ cd wxWidgets-3.1.1/ $ cd wxWidgets-3.1.2/
wxWidgets-3.1.1$ mkdir -p ~/Develop/wxWidgets-staticlib wxWidgets-3.1.2$ mkdir -p ~/Develop/wxWidgets-staticlib
wxWidgets-3.1.1$ ./autogen.sh wxWidgets-3.1.2$ ./autogen.sh
wxWidgets-3.1.1$ ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo ~/Develop/wxWidgets-staticlib` CXXFLAGS="-std=c++0x" wxWidgets-3.1.2$ ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo ~/Develop/wxWidgets-staticlib` CXXFLAGS="-std=c++0x"
[ configuring.. ] [ configuring.. ]
wxWidgets-3.1.1$ make -j4 && make install wxWidgets-3.1.2$ make -j4 && make install
[ building and installed to ~/Develop/wxWidgets-staticlib in this example ] [ building and installed to ~/Develop/wxWidgets-staticlib in this example ]
``` ```