From ec756d0e3165d5c9af3f006cf2a9b18a5f9171ee Mon Sep 17 00:00:00 2001 From: Vincent Sonnier Date: Sat, 14 Jan 2023 11:02:51 +0100 Subject: [PATCH] Updated for wxWidgets v3.2.1 --- Build-Linux.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Build-Linux.md b/Build-Linux.md index dcfa2ae..e66e7db 100644 --- a/Build-Linux.md +++ b/Build-Linux.md @@ -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._