IoLanguage / io

Io programming language. Inspired by Self, Smalltalk and LISP.
http://iolanguage.org
Other
2.66k stars 298 forks source link

cmake error #424

Closed richcollins closed 5 years ago

richcollins commented 5 years ago

OS X 10.13.6

$ cd io/ $ mkdir build $ cd build $ cmake .. -- The C compiler identification is AppleClang 10.0.0.10001145 -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Configuration set to: DebugFast -- Performing Test HAVE_POSITIVE_NAN -- Performing Test HAVE_POSITIVE_NAN - Success -- Configuring done CMake Error at libs/CMakeLists.txt:94 (add_library): Cannot find source file:

/path-on-my-system/io/deps/parson/parson.c

Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm .hpp .hxx .in .txx

CMake Error at libs/iovm/CMakeLists.txt:107 (add_library): Cannot find source file:

../../deps/parson/parson.c

Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm .hpp .hxx .in .txx

CMake Error at libs/CMakeLists.txt:94 (add_library): No SOURCES given to target: iovmall_static

CMake Error at libs/iovm/CMakeLists.txt:107 (add_library): No SOURCES given to target: iovmall

-- Build files have been written to: /path-on-my-system/io/build

richcollins commented 5 years ago

Looks like parson.c is missing:

find ./ -name parson.c

richcollins commented 5 years ago

I missed this part:

git clone --recursive https://github.com/IoLanguage/io.git