[PATCH] D30015: [OpenMP] Add arch-specific directory to search path
Michał Górny via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 16 00:05:01 PST 2017
mgorny added inline comments.
================
Comment at: lib/Driver/Tools.cpp:3267
+ if (llvm::sys::fs::is_directory(CandidateLibPath))
+ CmdArgs.push_back(Args.MakeArgString("-L" + CandidateLibPath));
+
----------------
Don't you also need rpath for it? Or is this purely for static runtime?
https://reviews.llvm.org/D30015
More information about the cfe-commits
mailing list