Rate This Document
Findability
Accuracy
Completeness
Readability

Installing wxWidgets

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Obtain the wxWidgets installation package.
    wget https://github.com/wxWidgets/wxWidgets/archive/refs/tags/v3.0.5.tar.gz
  3. Decompress the wxWidgets installation package.
    tar -zxvf v3.0.5.tar.gz
  4. Go to the directory generated after the decompression.
    cd wxWidgets-3.0.5
  5. Perform the configuration.
    ./configure --disable-gui
  6. Perform the compilation and installation.
    make -j16
    make install
  7. Set the environment variables.
    ldconfig
  8. Perform the verification.
    wx-config --version