You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Runner.jl
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -310,7 +310,7 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
310
310
iflength(unsafe_flags) >=1
311
311
write(io, """
312
312
if [[ "\${ARGS[@]}" =~ \"$(join(unsafe_flags, "\"|\""))\" ]]; then
313
-
echo -e \"BinaryBuilder: You used one or more of the unsafe flags: $(join(unsafe_flags, ", "))\\nPlease repent.\" >&2
313
+
echo -e \"BinaryBuilder error: You used one or more of the unsafe flags: $(join(unsafe_flags, ", "))\\nThis is not allowed, please remove all unsafe flags from your build script to continue.\" >&2
314
314
exit 1
315
315
fi
316
316
""")
@@ -1285,12 +1285,10 @@ function platform_envs(platform::AbstractPlatform, src_name::AbstractString;
1285
1285
# GNU_LIBC_VERSION` would return, if it worked.
1286
1286
iflibc(platform) ==="glibc"
1287
1287
# This should be kept in sync with the version of glibc used in
0 commit comments