summaryrefslogtreecommitdiffstats
path: root/llvm/examples
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2016-05-30 01:18:32 +0000
committerLang Hames <lhames@gmail.com>2016-05-30 01:18:32 +0000
commitf96bc6eb0c1708682eb51380c36ca627a27ca92e (patch)
treef10be956e3111b0ccae298127d2b62dcc13f3d56 /llvm/examples
parenta243ba9cad0621d9ca3be4bceddbc58f02a10ca0 (diff)
downloadbcm5719-llvm-f96bc6eb0c1708682eb51380c36ca627a27ca92e.tar.gz
bcm5719-llvm-f96bc6eb0c1708682eb51380c36ca627a27ca92e.zip
[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
Diffstat (limited to 'llvm/examples')
-rw-r--r--llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
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()
OpenPOWER on IntegriCloud