diff options
author | Lang Hames <lhames@gmail.com> | 2016-05-30 01:18:32 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-05-30 01:18:32 +0000 |
commit | f96bc6eb0c1708682eb51380c36ca627a27ca92e (patch) | |
tree | f10be956e3111b0ccae298127d2b62dcc13f3d56 /llvm/examples | |
parent | a243ba9cad0621d9ca3be4bceddbc58f02a10ca0 (diff) | |
download | bcm5719-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.txt | 4 |
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() |