File: CrossCompile.md

package info (click to toggle)
jacktrip 2.7.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,788 kB
  • sloc: cpp: 44,373; sh: 965; makefile: 152; ansic: 32; ruby: 20; python: 15
file content (19 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Cross Compile JackTrip for Windows on Fedora

```bash
sudo dnf install mingw64-gcc mingw64-gcc-c++ mingw64-pkg-config mingw64-qt5-qtbase-static
```

```bash
meson --cross-file win/cross_file.txt build_win
cd build_win
meson compile
```

```bash
export WINEPATH=/usr/x86_64-w64-mingw32/sys-root/mingw/bin/
wine64 ./jacktrip.exe
```

You might want to copy all necessary DLLs to the same directory as the jacktrip.exe
binary.