Commit graph

4 commits

Author SHA1 Message Date
Ivan Nardi
6ab338928c
Add support for out-of-tree builds (#2993)
Initial work to support out-of-tree builds
```
./autogen.sh
mkdir build
cd build
../configure
make
make check
```
IMPORTANT: `autogen.sh` doesn't call `configure` automatically anymore!!

You have to do: `./autogen.sh && ./configure --$OPTIONS`.
A little bit annoying but the pattern `autogen && configure && make` is
very common on Linux.

Known issues:
* `make doc` doesn't work in out-of-tree builds, yet
* Windows/MinGW/DPDK (out-of-tree) builds have not been tested, so it is unlikely they work

See: #2992
2025-11-03 11:58:59 +01:00
Toni
bc6dc56d8f
Fix CI RPM build (switch to Alma Linux 8). Fix #2997 (#3001)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
2025-10-20 15:25:29 +02:00
Ivan Nardi
e5661337d0
Minor fix in CI action (#2489) 2024-07-03 16:17:21 +02:00
Toni
02030ac16e
Build RPM package in the CI. (#2304)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
2024-02-05 12:13:09 +01:00