Fix $ORIGIN handling in runtimes/neuron by escaping $ since zigopts does not expand Make variables.
This commit is contained in:
parent
993cbffd22
commit
b58f7ced3d
@ -25,7 +25,7 @@ zig_shared_library(
|
|||||||
zig_binary(
|
zig_binary(
|
||||||
name = "neuronx-cc",
|
name = "neuronx-cc",
|
||||||
data = ["@neuron_py_deps//neuronx_cc"],
|
data = ["@neuron_py_deps//neuronx_cc"],
|
||||||
linkopts = ["-Wl,-rpath,$ORIGIN/../lib"],
|
linkopts = ["-Wl,-rpath,$$ORIGIN/../lib"],
|
||||||
main = "neuronx-cc.zig",
|
main = "neuronx-cc.zig",
|
||||||
tags = ["manual"],
|
tags = ["manual"],
|
||||||
deps = [":libpython"],
|
deps = [":libpython"],
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user