Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

A more correct way of passing the USE_BINARYBUILDER_LIBUV=0 flag togmake (only on FreeBSD) #219

Merged
merged 1 commit into from
Aug 6, 2021
Merged
Changes from all commits
Commits
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
7 changes: 4 additions & 3 deletions master/inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def build_names(platform, arch, name):
for name in all_names:
# Initialize `march` to `None`, as some buildbots (power8) don't set it
march = None

# Initialize `mcpu` to `None`, as most buildbots don't set it (only ARM)
mcpu = None

Expand Down Expand Up @@ -88,7 +88,8 @@ def build_names(platform, arch, name):
elif name[:7] == "freebsd":
os_name = "freebsd"
os_pkg_ext = "tar.gz"
make_cmd = "gmake USE_BINARYBUILDER_LIBUV=0"
make_cmd = "gmake"
flags += 'USE_BINARYBUILDER_LIBUV=0 ' # https://github.com/JuliaLang/julia/issues/34627
DilumAluthge marked this conversation as resolved.
Show resolved Hide resolved

elif name[:4] == "musl":
os_name = "musl"
Expand All @@ -103,7 +104,7 @@ def build_names(platform, arch, name):
if os_name in ["win", "freebsd"]:
# Organize the output to make it clearer later, when using gmake > v4.0
flags += '--output-sync=target '

# Use ccache everywhere
flags += 'USECCACHE=1 '

Expand Down