Skip to content

Commit 0dc0e3d

Browse files
committed
Debugging.
1 parent 4bb12b2 commit 0dc0e3d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ccpp.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,7 @@ jobs:
6666
- name: brew
6767
run: |
6868
brew install sqlite pkg-config libusb protobuf wxwidgets fmt make coreutils dylibbundler libjpeg libmagic nlohmann-json cli11 boost glfw3 md4c ninja python freetype2 mbedtls
69-
brew update
70-
pkg-config --cflags --libs glfw3
71-
pkg-config --cflags --libs glfw3 --static
72-
false
69+
brew upgrade
7370
- name: make
7471
run: gmake -C fluxengine
7572
- name: Upload build artifacts

build/pkg.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ def _package(self, name, package, fallback, pkgconfig):
4040
cflags = pkgconfig.get_property(package, "--cflags")
4141
ldflags = pkgconfig.get_property(package, "--libs")
4242

43+
print(f"package {package} cflags: {cflags}")
44+
print(f"package {package} ldflags: {ldflags}")
4345
if cflags:
4446
self.args["caller_cflags"] = [cflags]
4547
if ldflags:

0 commit comments

Comments
 (0)