Skip to content

Instantly share code, notes, and snippets.

@mattneub
Created February 6, 2019 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattneub/5feaa268757ec828b1cb4a67d32803f6 to your computer and use it in GitHub Desktop.
Save mattneub/5feaa268757ec828b1cb4a67d32803f6 to your computer and use it in GitHub Desktop.
trying to build freecell solver
Matts-Mac-mini:~ mattneubelcap$ cd Downloads
Matts-Mac-mini:Downloads mattneubelcap$ tar xf freecell-solver-5.0.0.tar.xz
Matts-Mac-mini:Downloads mattneubelcap$ cd freecell-solver-5.0.0
Matts-Mac-mini:freecell-solver-5.0.0 mattneubelcap$ mkdir build
Matts-Mac-mini:freecell-solver-5.0.0 mattneubelcap$ cd build/
Matts-Mac-mini:build mattneubelcap$ cmake .. -DFCS_WITH_TEST_SUITE=OFF
-- The C compiler identification is AppleClang 10.0.1.10010037
-- The CXX compiler identification is AppleClang 10.0.1.10010037
-- Check for working C compiler: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-- Check for working C compiler: /Applications/Xcode-beta.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
-- Check for working CXX compiler: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
-- Check for working CXX compiler: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found Perl: /usr/bin/perl (found version "5.18.2")
-- Looking for vasprintf
-- Looking for vasprintf - found
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - found
-- Found Threads: TRUE
-- Performing Test FLAG_EXISTS_1
-- Performing Test FLAG_EXISTS_1 - Success
-- Performing Test FLAG_EXISTS_2
-- Performing Test FLAG_EXISTS_2 - Failed
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of __int128
-- Check size of __int128 - done
-- Looking for pow
-- Looking for pow - found
-- Looking for strncasecmp
-- Looking for strncasecmp - found
-- Check size of int
-- Check size of int - done
-- Check size of void*
-- Check size of void* - done
-- Configuring done
CMake Error at CMakeLists.txt:522 (ADD_LIBRARY):
Cannot find source file:
param.c
Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm
.hpp .hxx .in .txx
CMake Error at CMakeLists.txt:522 (ADD_LIBRARY):
No SOURCES given to target: freecell-solver-static
CMake Error at CMakeLists.txt:515 (ADD_LIBRARY):
No SOURCES given to target: freecell-solver
-- Build files have been written to: /Users/mattneubelcap/Downloads/freecell-solver-5.0.0/build
Matts-Mac-mini:build mattneubelcap$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment