[llvm] r271194 - [Kaleidoscope][BuildingAJIT] Don't build Chapter 5 on Windows for now.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sun May 29 18:18:48 PDT 2016


Author: lhames
Date: Sun May 29 20:18:32 2016
New Revision: 271194

URL: http://llvm.org/viewvc/llvm-project?rev=271194&view=rev
Log:
[Kaleidoscope][BuildingAJIT] Don't build Chapter 5 on Windows for now.

The TCP setup code is currently *nix based and does not build on Windows.


Modified:
    llvm/trunk/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt

Modified: llvm/trunk/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt?rev=271194&r1=271193&r2=271194&view=diff
==============================================================================
--- llvm/trunk/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt (original)
+++ llvm/trunk/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt Sun May 29 20:18:32 2016
@@ -2,5 +2,7 @@ add_subdirectory(Chapter1)
 add_subdirectory(Chapter2)
 add_subdirectory(Chapter3)
 add_subdirectory(Chapter4)
-add_subdirectory(Chapter5)
 
+if (NOT WIN32)
+  add_subdirectory(Chapter5)
+endif()




More information about the llvm-commits mailing list