mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 10:45:18 +00:00
Set LIBPATH
This commit is contained in:
parent
35726e909d
commit
b56fcb173b
@ -741,6 +741,9 @@ class RustBuild(object):
|
|||||||
env["LIBRARY_PATH"] = os.path.join(self.bin_root(), "lib") + \
|
env["LIBRARY_PATH"] = os.path.join(self.bin_root(), "lib") + \
|
||||||
(os.pathsep + env["LIBRARY_PATH"]) \
|
(os.pathsep + env["LIBRARY_PATH"]) \
|
||||||
if "LIBRARY_PATH" in env else ""
|
if "LIBRARY_PATH" in env else ""
|
||||||
|
env["LIBPATH"] = os.path.join(self.bin_root(), "lib") + \
|
||||||
|
(os.pathsep + env["LIBPATH"]) \
|
||||||
|
if "LIBPATH" in env else ""
|
||||||
|
|
||||||
# Export Stage0 snapshot compiler related env variables
|
# Export Stage0 snapshot compiler related env variables
|
||||||
build_section = "target.{}".format(self.build)
|
build_section = "target.{}".format(self.build)
|
||||||
|
Loading…
Reference in New Issue
Block a user