diff options
| author | Damien George <damien@micropython.org> | 2023-02-17 12:44:07 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-02-17 13:13:57 +1100 |
| commit | 4bd4b6a47edb519122990cc0274af4b68f988a67 (patch) | |
| tree | a84906f9eee702bbb960602310645e86d7570ff7 | |
| parent | c7391a2d80d1927d702e3f6e304f185af81d45a4 (diff) | |
tools/ci.sh: Install pkg-config for macos builds.
Signed-off-by: Damien George <damien@micropython.org>
| -rwxr-xr-x | tools/ci.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index 052270204..193ab04e4 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -594,6 +594,9 @@ function ci_unix_settrace_stackless_run_tests { } function ci_unix_macos_build { + # Install pkg-config to configure libffi paths. + brew install pkg-config + make ${MAKEOPTS} -C mpy-cross make ${MAKEOPTS} -C ports/unix submodules #make ${MAKEOPTS} -C ports/unix deplibs |
