================
@@ -19,12 +19,12 @@
if platform.system() == "Darwin":
shlibpath_var = "DYLD_LIBRARY_PATH"
-elif platform.system() == "Windows":
+elif platform.system() == "Windows" or sys.platform == "cygwin":
shlibpath_var = "PATH"
else:
shlibpath_var = "LD_LIBRARY_PATH"
config.environment[shlibpath_var] = os.path.pathsep.join(
- ("@SHLIBDIR@", "@LLVM_LIBS_DIR@", config.environment.get(shlibpath_var,
""))
+ (config.shlibdir, config.llvm_libs_dir,
config.environment.get(shlibpath_var, ""))
----------------
kikairoya wrote:
> I'll split out to another PR
done. https://github.com/llvm/llvm-project/pull/164147
https://github.com/llvm/llvm-project/pull/163947
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits