Fix $ORIGIN handling in runtimes/neuron by escaping $ since zigopts does not expand Make variables.

This commit is contained in:
Tarry Singh 2025-11-24 12:04:56 +00:00
parent 993cbffd22
commit b58f7ced3d

View File

@ -25,7 +25,7 @@ zig_shared_library(
zig_binary(
name = "neuronx-cc",
data = ["@neuron_py_deps//neuronx_cc"],
linkopts = ["-Wl,-rpath,$ORIGIN/../lib"],
linkopts = ["-Wl,-rpath,$$ORIGIN/../lib"],
main = "neuronx-cc.zig",
tags = ["manual"],
deps = [":libpython"],