[PATCH] D41158: [cmake] Support host architectures other than x64

Zachary Turner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 13 08:58:55 PST 2017


zturner accepted this revision.
zturner added inline comments.
This revision is now accepted and ready to land.


================
Comment at: cmake/platforms/WinMsvc.cmake:177-181
+elseif(HOST_ARCH STREQUAL "i686")
+  set(WINSDK_ARCH "x86")
+elseif(HOST_ARCH STREQUAL "x86_64")
+  set(WINSDK_ARCH "x64")
+else()
----------------
Can you make these two branches also handle the relatively common spellings "x86" and "x64"?


https://reviews.llvm.org/D41158





More information about the llvm-commits mailing list