Updated for wxWidgets v3.2.1

Vincent Sonnier 2023-01-14 11:02:51 +01:00
parent 224c4dbdf7
commit ec756d0e31
1 changed files with 9 additions and 9 deletions

@ -50,28 +50,28 @@ liquid-dsp$ sudo make install
liquid-dsp$ sudo ldconfig
```
### Build static latest wxWidgets (3.1.5):
### Build static latest wxWidgets (3.2.1):
_Note: replace '~/Develop/wxWidgets-staticlib' with your own path if you prefer, remember it to be used later when building CubicSDR._
```bash
$ wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.5/wxWidgets-3.1.5.tar.bz2
$ wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.1/wxWidgets-3.2.1.tar.bz2
[ downloading.. ]
$ tar -xvjf wxWidgets-3.1.5.tar.bz2
$ tar -xvjf wxWidgets-3.2.1.tar.bz2
[ unpacking.. ]
$ cd wxWidgets-3.1.5/
wxWidgets-3.1.5$ mkdir -p ~/Develop/wxWidgets-staticlib
wxWidgets-3.1.5$ ./autogen.sh
wxWidgets-3.1.5$ ./configure --prefix=`echo ~/Develop/wxWidgets-staticlib` --with-opengl --disable-glcanvasegl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webview --disable-webviewwebkit CXXFLAGS="-std=c++0x"
$ cd wxWidgets-3.2.1/
wxWidgets-3.2.1$ mkdir -p ~/Develop/wxWidgets-staticlib
wxWidgets-3.2.1$ ./autogen.sh
wxWidgets-3.2.1$ ./configure --prefix=`echo ~/Develop/wxWidgets-staticlib` --with-opengl --disable-glcanvasegl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webview --disable-webviewwebkit CXXFLAGS="-std=c++0x"
[ configuring.. ]
wxWidgets-3.1.5$ make -j4 && make install
wxWidgets-3.2.1$ make -j4 && make install
[ building and installed to ~/Develop/wxWidgets-staticlib in this example ]
```
### Build static wxWidgets (3.1.3): If experiencing OpenGL segfaults with 3.1.4 and 3.1.5
### Build static wxWidgets (3.1.3): If experiencing OpenGL segfaults with 3.1.4 and later.
_Note: replace '~/Develop/wxWidgets-staticlib' with your own path if you prefer, remember it to be used later when building CubicSDR._