Bug 1316545 part 1 - Link clang plugin with the import library of clang.exe to fix unresolved symbols. r=ehsan

MozReview-Commit-ID: G2PtmjBVacj
This commit is contained in:
Ting-Yu Chou 2016-11-16 12:36:58 +08:00
Родитель 70d7ae6caa
Коммит a299d4d20b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -56,7 +56,7 @@ if test -n "$ENABLE_CLANG_PLUGIN"; then
dnl due to undefined symbols (which will be provided by clang).
CLANG_LDFLAGS="-Wl,-flat_namespace -Wl,-undefined,suppress -lclangASTMatchers"
elif test "${HOST_OS_ARCH}" = "WINNT"; then
CLANG_LDFLAGS="clangASTMatchers.lib"
CLANG_LDFLAGS="clang.lib"
else
CLANG_LDFLAGS="-lclangASTMatchers"
fi