Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add (mostly static) Linux build #48

Merged
merged 43 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
1cb2d95
Add initial support for Linux
fwcd Nov 9, 2023
5922366
Add experimental Linux workflow
fwcd Nov 9, 2023
cec0fbd
Install APT dependencies
fwcd Nov 9, 2023
1943593
Fix package name
fwcd Nov 9, 2023
951e00a
Install `autoconf-archive` on Linux
fwcd Nov 9, 2023
976f110
Add missing dependencies for Qt build on Linux
fwcd Nov 9, 2023
4504eac
Add `mesa-common-dev`
fwcd Nov 9, 2023
47d2a5c
Try another package
fwcd Nov 9, 2023
e3f8ba1
Add release-mode triplet for x64-linux
fwcd Nov 9, 2023
f1e3d81
Revert "Add release-mode triplet for x64-linux"
fwcd Nov 9, 2023
4a3821a
Add missing `libudev-dev` dependency
fwcd Nov 10, 2023
06eef33
Add `libupower-glib-dev` dependency
fwcd Nov 10, 2023
cb26a81
Use patched Mixxx with XCB plugin
fwcd Nov 10, 2023
f30a209
Base mixxx branch on `main` again
fwcd Nov 10, 2023
29f6265
Add missing `libtool` dependency
fwcd Nov 10, 2023
a0c8ebe
Try linking a bunch of libraries manually
fwcd Nov 11, 2023
a5845c2
Add `libasound2-dev` to APT dependencies
fwcd Nov 11, 2023
5c11856
Remove extra flags again
fwcd Nov 11, 2023
6ff8fa8
Use `linux-static` integration branch (for now)
fwcd Nov 12, 2023
66d49aa
Update mixxx (link PortMidi with ALSA)
fwcd Nov 12, 2023
aa3f01c
Update mixxx (with the right PortMidi target)
fwcd Nov 12, 2023
e779f48
Update mixxx (add proper PortMidi targets)
fwcd Nov 12, 2023
f12eaba
Update mixxx (fix typo)
fwcd Nov 12, 2023
b7c7c55
Update mixxx (link udev)
fwcd Nov 12, 2023
e252090
Update mixxx (link hidraw with udev too)
fwcd Nov 12, 2023
12f803b
Update mixxx (sleef openmp)
fwcd Nov 12, 2023
e029027
Update mixxx (link OpenMP target)
fwcd Nov 12, 2023
7bd97ef
Update mixxx (Add proper FindUdev)
fwcd Nov 12, 2023
a917700
Update mixxx (fix missing udev vars)
fwcd Nov 12, 2023
35f4778
Update mixxx (reorder vorbis found)
fwcd Nov 12, 2023
609c4ec
Update mixxx (rename to libudev and find include path)
fwcd Nov 12, 2023
8ba4140
Update mixxx (use sleefdft)
fwcd Nov 12, 2023
7a95e4c
Update mixxx (fix typo)
fwcd Nov 12, 2023
c8c90d2
Always save ccache for faster builds
fwcd Nov 12, 2023
873272b
Update mixxx (try linking openmp the modern way)
fwcd Nov 12, 2023
081b499
Use `${{ env.HOME }}` instead of `$HOME`
fwcd Nov 12, 2023
fc42623
Update mixxx (use openmp flags)
fwcd Nov 12, 2023
7c8a94a
Specify ccache path in matrix
fwcd Nov 12, 2023
e5ee00c
Update mixxx (use proper sleefdft target)
fwcd Nov 12, 2023
74c4b83
Update mixxx (link openmp again)
fwcd Nov 13, 2023
5fcbea1
Update mixxx (link sleef into sleefdft)
fwcd Nov 13, 2023
72fd672
Include triplet in ccache key
fwcd Nov 13, 2023
d0833cd
Disable battery indicator in Linux build for now
fwcd Nov 13, 2023
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
Prev Previous commit
Next Next commit
Try linking a bunch of libraries manually
  • Loading branch information
fwcd committed Nov 12, 2023
commit a0c8ebe50b7437c61e71f9b7e304bd21c61b2984
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
overlay_ports: vcpkg/overlay/ports
cpack_generator: TGZ
package_extension: tar.gz
cmake_args: ''
cmake_args: >-
-DCMAKE_CXX_FLAGS='-lasound -ludev -fopenmp -lsleef'

name: '${{ matrix.name }}'
runs-on: '${{ matrix.os }}'
Expand Down
1 change: 1 addition & 0 deletions scripts/install-apt-deps
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ sudo apt-get install -y \
libx11-xcb-dev \
libgl1-mesa-dev \
libglu1-mesa-dev \
libsleef-dev \
libudev-dev \
libupower-glib-dev \
libtool \
Expand Down