This commit is contained in:
2019-10-08 00:38:06 -06:00
parent 2124fc3bb6
commit a8626b59b4
152 changed files with 7089 additions and 67 deletions

View File

@@ -624,3 +624,41 @@ Linking CXX executable cmTC_92e53
Feature record: CXX_FEATURE:0cxx_variable_templates
Feature record: CXX_FEATURE:0cxx_variadic_macros
Feature record: CXX_FEATURE:0cxx_variadic_templates
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /Users/bradybodily/Repositories/CS3460/Hw4/cmake-build-debug/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e1ad3/fast
/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_e1ad3.dir/build.make CMakeFiles/cmTC_e1ad3.dir/build
Building C object CMakeFiles/cmTC_e1ad3.dir/CheckIncludeFile.c.o
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk -o CMakeFiles/cmTC_e1ad3.dir/CheckIncludeFile.c.o -c /Users/bradybodily/Repositories/CS3460/Hw4/cmake-build-debug/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e1ad3
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e1ad3.dir/link.txt --verbose=1
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_e1ad3.dir/CheckIncludeFile.c.o -o cmTC_e1ad3
Determining if the pthread_create exist passed with the following output:
Change Dir: /Users/bradybodily/Repositories/CS3460/Hw4/cmake-build-debug/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_3c086/fast
/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_3c086.dir/build.make CMakeFiles/cmTC_3c086.dir/build
Building C object CMakeFiles/cmTC_3c086.dir/CheckSymbolExists.c.o
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk -o CMakeFiles/cmTC_3c086.dir/CheckSymbolExists.c.o -c /Users/bradybodily/Repositories/CS3460/Hw4/cmake-build-debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c
Linking C executable cmTC_3c086
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3c086.dir/link.txt --verbose=1
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_3c086.dir/CheckSymbolExists.c.o -o cmTC_3c086
File /Users/bradybodily/Repositories/CS3460/Hw4/cmake-build-debug/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */
#include <pthread.h>
int main(int argc, char** argv)
{
(void)argv;
#ifndef pthread_create
return ((int*)(&pthread_create))[argc];
#else
(void)argc;
return 0;
#endif
}