From 7243284041682ba08403849e68469daf88a2f48a Mon Sep 17 00:00:00 2001 From: Vincent Sonnier Date: Sat, 17 Apr 2021 17:56:37 +0200 Subject: [PATCH] Added `--disable-glcanvasegl` in wxWidgets compile; changed all references to 3.1.5 --- Build-Linux.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Build-Linux.md b/Build-Linux.md index 8a427d4..c3ef227 100644 --- a/Build-Linux.md +++ b/Build-Linux.md @@ -55,18 +55,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._ ```bash -$ wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.4/wxWidgets-3.1.4.tar.bz2 +$ wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.5/wxWidgets-3.1.5.tar.bz2 [ downloading.. ] -$ tar -xvjf wxWidgets-3.1.4.tar.bz2 +$ tar -xvjf wxWidgets-3.1.5.tar.bz2 [ unpacking.. ] -$ cd wxWidgets-3.1.4/ -wxWidgets-3.1.4$ mkdir -p ~/Develop/wxWidgets-staticlib -wxWidgets-3.1.4$ ./autogen.sh -wxWidgets-3.1.4$ ./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" +$ 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 --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-webkit --disable-webview --disable-webviewwebkit --prefix=`echo ~/Develop/wxWidgets-staticlib` CXXFLAGS="-std=c++0x" [ configuring.. ] -wxWidgets-3.1.4$ make -j4 && make install +wxWidgets-3.1.5$ make -j4 && make install [ building and installed to ~/Develop/wxWidgets-staticlib in this example ] ```