Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,35 @@ This step needs root/admin privileges.
For Ubuntus, you need to enable the universe and multiverse repositories first:
https://help.ubuntu.com/community/Repositories/Ubuntu#Adding_Repositories_in_Ubuntu

Ubuntu 24.04
-------------------------
This version of Ubuntu has only libwxgtk3.2 and it requires to build wxGTK manualy
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you check how far is 3.2 from 3.0 API-wise? Would it be difficult to fix OpenASIP code base to support it? Unfortunately 20.04 nor 22.04 do not support it, so we'd need to #ifdef-support the both versions.

```bash
wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.0.5.1/wxWidgets-3.0.5.1.tar.bz2
tar xjf wxWidgets-3.0.5.1.tar.bz2
cd wxWidgets-3.0.5.1
mkdir build-gtk
cd build-gtk
../configure --with-gtk
#change j to your cpu number
make -j64
sudo make install
```

It could be impossible to build with default libboost-all-dev, please use version 1.74
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
It could be impossible to build with default libboost-all-dev, please use version 1.74
The default libboost installed by Ubuntu 24.04 is not yet supported by OpenASIP, however, the version 1.74 works:


```bash
sudo apt install libboost1.74-all-dev
```
To get rid of message
```
Gtk-Message: 20:48:44.631: Failed to load module "canberra-gtk-module"
```
this optional install could be done too before or after build.
```bash
sudo apt install libcanberra-gtk-module libcanberra-gtk3-module
```

Ubuntu 20.04+ / Debian 11
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Ubuntu 20.04+ / Debian 11
Ubuntu 20.04, 22.04 and Debian 11

-------------------------

Expand Down