Skip to content

Commit

Permalink
Update Meson to 1.4.1
Browse files Browse the repository at this point in the history
I've seen some `-undefined` not supported when trying to build worker tests with Address Sanitizer in macOS (which is not supported anyway) and it went away updating Meson to 1.4.1, so why not?
  • Loading branch information
ibc committed Jul 6, 2024
1 parent 8b46a2b commit a8ccb22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
NUM_CORES = len(os.sched_getaffinity(0)) if hasattr(os, 'sched_getaffinity') else os.cpu_count();
PYTHON = os.getenv('PYTHON') or sys.executable;
MESON = os.getenv('MESON') or f'{PIP_MESON_NINJA_DIR}/bin/meson';
MESON_VERSION = os.getenv('MESON_VERSION') or '1.3.0';
MESON_VERSION = os.getenv('MESON_VERSION') or '1.4.1';
# MESON_ARGS can be used to provide extra configuration parameters to meson,
# such as adding defines or changing optimization options. For instance, use
# `MESON_ARGS="-Dms_log_trace=true -Dms_log_file_line=true" npm i` to compile
Expand Down

0 comments on commit a8ccb22

Please sign in to comment.