[PATCH] D29677: [buildbot] Add check-fuzzer to Asan buildbot on Windows.
Zachary Turner via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 7 16:00:59 PST 2017
zturner added a comment.
rnk, does this look correct to you? I dont' see anything obviously wrong, but you are more familiar with this bot than I am.
================
Comment at: zorg/buildbot/builders/SanitizerBuilderWindows.py:128
+ bin_path = os.path.join(config_path, "bin")
+ dll_path = glob.glob(config_path + "\lib\clang\*\lib\windows")[0]
+ clang_cl = os.path.join(bin_path, "clang-cl")
----------------
The backslashes here need to be escaped or they will be treated as escape characters. Or use `path.join` so you don't have to deal with slashes at all.
https://reviews.llvm.org/D29677
More information about the llvm-commits
mailing list