Skip to content

Commit

Permalink
Build with -j32 and added -ldl
Browse files Browse the repository at this point in the history
  • Loading branch information
emoon committed Feb 2, 2024
1 parent be4ae05 commit ac1c026
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libsdl2-dev
- name: make
run: make
run: make -j$(nproc)
2 changes: 1 addition & 1 deletion build/Makefile.quaesar
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,4 @@ CPPFLAGS += -DFILEFLAG_DIR=1 -D_ftelli64=ftello64 -D_fseeki64=fseeko64

EXTS = sdl2 libpng
CPPFLAGS += $(foreach ext,$(EXTS), $(shell pkg-config --cflags $(ext)))
LDLIBS += $(foreach ext,$(EXTS), $(shell pkg-config --libs $(ext))) -lz
LDLIBS += $(foreach ext,$(EXTS), $(shell pkg-config --libs $(ext))) -lz -ldl

0 comments on commit ac1c026

Please sign in to comment.