Installing wxWidgets
Procedure
- Use PuTTY to log in to the server as the root user.
- Obtain the wxWidgets installation package.
wget https://github.com/wxWidgets/wxWidgets/archive/refs/tags/v3.0.5.tar.gz
- Decompress the wxWidgets installation package.
tar -zxvf v3.0.5.tar.gz
- Go to the directory generated after the decompression.
cd wxWidgets-3.0.5
- Perform the configuration.
./configure --disable-gui
- Perform the compilation and installation.
make -j16 make install
- Set the environment variables.
ldconfig
- Perform the verification.
wx-config --version
Parent topic: Configuring the Compilation Environment