Skip to content
Snippets Groups Projects
Commit eba0a13f authored by Eric Müller's avatar Eric Müller :mountain_bicyclist: Committed by Eleni Mathioulaki
Browse files

fix[bazel]: build fix by passing through LD_LIBRARY_PATH

parent 4d1ec6ab
No related branches found
No related tags found
1 merge request!392Fixed site-config paths for JSC systems.
Pipeline #24190 waiting for manual action with stage
in 3 hours, 51 minutes, and 9 seconds
...@@ -532,7 +532,10 @@ class Bazel(Package): ...@@ -532,7 +532,10 @@ class Bazel(Package):
# Increase verbosity of explanation, # Increase verbosity of explanation,
" --verbose_explanations" " --verbose_explanations"
# Show (formatted) subcommands being executed # Show (formatted) subcommands being executed
" --subcommands=pretty_print" " --jobs={0}".format(make_jobs), " --subcommands=pretty_print"
# expose LD_LIBRARY_PATH (to fix protoc runtime error during build)
" --action_env=LD_LIBRARY_PATH"
" --jobs={0}".format(make_jobs),
) )
@run_before("install") @run_before("install")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment