From f96bc6eb0c1708682eb51380c36ca627a27ca92e Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Mon, 30 May 2016 01:18:32 +0000 Subject: [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. llvm-svn: 271194 --- llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'llvm/examples') diff --git a/llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt b/llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt index 17e280c1671..947b5a3a327 100644 --- a/llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt +++ b/llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt @@ -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() -- cgit v1.2.3