Working
This commit is contained in:
@@ -3,48 +3,16 @@ project(FinalProject)
|
|||||||
set(CMAKE_CXX_STANDARD 11)
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
SET(CMAKE_CXX_COMPILER mpicxx)
|
SET(CMAKE_CXX_COMPILER mpicxx)
|
||||||
find_package(MPI REQUIRED)
|
find_package(MPI REQUIRED)
|
||||||
|
find_package(nlohmann_json 3.2.0 REQUIRED)
|
||||||
|
|
||||||
add_definitions(-DOMPI_SKIP_MPICXX)
|
add_definitions(-DOMPI_SKIP_MPICXX)
|
||||||
set(HEADER_FILES
|
set(HEADER_FILES
|
||||||
)
|
)
|
||||||
set(SOURCE_FILES
|
set(SOURCE_FILES
|
||||||
)
|
)
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
|
||||||
|
|
||||||
add_executable(HW10 ${HEADER_FILES} ${SOURCE_FILES} main.cpp)
|
add_executable(HW10 ${HEADER_FILES} ${SOURCE_FILES} main.cpp)
|
||||||
set_property(TARGET HW10 PROPERTY CXX_STANDARD 11)
|
set_property(TARGET HW10 PROPERTY CXX_STANDARD 11)
|
||||||
|
|
||||||
target_compile_options(HW10 PRIVATE -Wall -Wextra -pedantic -Wl,--stack,10000000 -O3)
|
target_compile_options(HW10 PRIVATE -Wall -Wextra -pedantic -Wl,--stack,10000000 -O3)
|
||||||
target_link_libraries(HW10 PRIVATE MPI::MPI_C)
|
target_link_libraries(HW10 PRIVATE MPI::MPI_C nlohmann_json::nlohmann_json)
|
||||||
# Prepare a pre-build step to run clang-format over all the [ch]pp source files.
|
|
||||||
# Start by finding the location of the clang-format executable.
|
|
||||||
#
|
|
||||||
find_program(CLANG_FORMAT "clang-format")
|
|
||||||
if (CLANG_FORMAT)
|
|
||||||
#
|
|
||||||
# Need to take the simple source file locations used for the project and get their full
|
|
||||||
# file system locations for use in putting together the clang-format command line
|
|
||||||
#
|
|
||||||
unset(SOURCE_FILES_PATHS)
|
|
||||||
foreach(SOURCE_FILE ${HEADER_FILES} ${SOURCE_FILES} ${UNIT_TEST_FILES} main.cpp)
|
|
||||||
get_source_file_property(WHERE ${SOURCE_FILE} LOCATION)
|
|
||||||
set(SOURCE_FILES_PATHS ${SOURCE_FILES_PATHS} ${WHERE})
|
|
||||||
endforeach()
|
|
||||||
|
|
||||||
#
|
|
||||||
# This creates the clang-format target/command
|
|
||||||
#
|
|
||||||
add_custom_target(
|
|
||||||
ClangFormat
|
|
||||||
COMMAND ${CLANG_FORMAT}
|
|
||||||
-i
|
|
||||||
-style=file
|
|
||||||
${SOURCE_FILES_PATHS}
|
|
||||||
)
|
|
||||||
#
|
|
||||||
# This makes the clang-format target a dependency of the main GoogleTestIntro project
|
|
||||||
#
|
|
||||||
# add_dependencies(Weights ClangFormat)
|
|
||||||
else()
|
|
||||||
message("Unable to find clang-format")
|
|
||||||
endif()
|
|
||||||
|
|||||||
8
FinalProject/Matrix.txt
Normal file
8
FinalProject/Matrix.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
3 3
|
||||||
|
1 2 3
|
||||||
|
4 5 6
|
||||||
|
7 8 9
|
||||||
|
3 3
|
||||||
|
9 8 7
|
||||||
|
6 5 4
|
||||||
|
3 2 1
|
||||||
5
FinalProject/Matrix_Info.cpp
Normal file
5
FinalProject/Matrix_Info.cpp
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
//
|
||||||
|
// Created by Brady Bodily on 4/11/20.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include "Matrix_Info.h"
|
||||||
21
FinalProject/Matrix_Info.h
Normal file
21
FinalProject/Matrix_Info.h
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
//
|
||||||
|
// Created by Brady Bodily on 4/11/20.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef FINALPROJECT_MATRIX_INFO_H
|
||||||
|
#define FINALPROJECT_MATRIX_INFO_H
|
||||||
|
|
||||||
|
class Matrix_Info {
|
||||||
|
static int M, N;
|
||||||
|
double Matrix[0][0];
|
||||||
|
public:
|
||||||
|
Matrix_Info(int m, int n){
|
||||||
|
M = m;
|
||||||
|
N = n;
|
||||||
|
Matrix = Matrix[M][N];
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // FINALPROJECT_MATRIX_INFO_H
|
||||||
Binary file not shown.
@@ -14,9 +14,6 @@
|
|||||||
# EXTERNAL cache entries
|
# EXTERNAL cache entries
|
||||||
########################
|
########################
|
||||||
|
|
||||||
//Path to a program.
|
|
||||||
CLANG_FORMAT:FILEPATH=/usr/local/bin/clang-format
|
|
||||||
|
|
||||||
//Path to a program.
|
//Path to a program.
|
||||||
CMAKE_AR:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ar
|
CMAKE_AR:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ar
|
||||||
|
|
||||||
@@ -289,6 +286,9 @@ MPI_mpi_LIBRARY:FILEPATH=/usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib
|
|||||||
//Path to a program.
|
//Path to a program.
|
||||||
ProcessorCount_cmd_sysctl:FILEPATH=/usr/sbin/sysctl
|
ProcessorCount_cmd_sysctl:FILEPATH=/usr/sbin/sysctl
|
||||||
|
|
||||||
|
//The directory containing a CMake configuration file for nlohmann_json.
|
||||||
|
nlohmann_json_DIR:PATH=/usr/local/lib/cmake/nlohmann_json
|
||||||
|
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# INTERNAL cache entries
|
# INTERNAL cache entries
|
||||||
@@ -435,6 +435,8 @@ FIND_PACKAGE_MESSAGE_DETAILS_MPI:INTERNAL=[TRUE][TRUE][c ][v3.1()]
|
|||||||
FIND_PACKAGE_MESSAGE_DETAILS_MPI_C:INTERNAL=[/usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib][mpi][/usr/local/Cellar/open-mpi/4.0.2/include][TRUE][v3.1()]
|
FIND_PACKAGE_MESSAGE_DETAILS_MPI_C:INTERNAL=[/usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib][mpi][/usr/local/Cellar/open-mpi/4.0.2/include][TRUE][v3.1()]
|
||||||
//Details about finding MPI_CXX
|
//Details about finding MPI_CXX
|
||||||
FIND_PACKAGE_MESSAGE_DETAILS_MPI_CXX:INTERNAL=[/usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib][mpi][/usr/local/Cellar/open-mpi/4.0.2/include][TRUE][v3.1()]
|
FIND_PACKAGE_MESSAGE_DETAILS_MPI_CXX:INTERNAL=[/usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib][mpi][/usr/local/Cellar/open-mpi/4.0.2/include][TRUE][v3.1()]
|
||||||
|
//Details about finding nlohmann_json
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_nlohmann_json:INTERNAL=[/usr/local/lib/cmake/nlohmann_json/nlohmann_jsonConfig.cmake][v3.7.3(3.2.0)]
|
||||||
//ADVANCED property for variable: MPIEXEC_EXECUTABLE
|
//ADVANCED property for variable: MPIEXEC_EXECUTABLE
|
||||||
MPIEXEC_EXECUTABLE-ADVANCED:INTERNAL=1
|
MPIEXEC_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: MPIEXEC_MAX_NUMPROCS
|
//ADVANCED property for variable: MPIEXEC_MAX_NUMPROCS
|
||||||
|
|||||||
@@ -28,27 +28,27 @@ The CXX compiler identification is AppleClang, found in "/Users/bradybodily/Repo
|
|||||||
Determining if the C compiler works passed with the following output:
|
Determining if the C compiler works passed with the following output:
|
||||||
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/usr/bin/make cmTC_19af5/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_19af5.dir/build.make CMakeFiles/cmTC_19af5.dir/build
|
Run Build Command(s):/usr/bin/make cmTC_f0944/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_f0944.dir/build.make CMakeFiles/cmTC_f0944.dir/build
|
||||||
Building C object CMakeFiles/cmTC_19af5.dir/testCCompiler.c.o
|
Building C object CMakeFiles/cmTC_f0944.dir/testCCompiler.c.o
|
||||||
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_19af5.dir/testCCompiler.c.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/testCCompiler.c
|
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_f0944.dir/testCCompiler.c.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/testCCompiler.c
|
||||||
Linking C executable cmTC_19af5
|
Linking C executable cmTC_f0944
|
||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_19af5.dir/link.txt --verbose=1
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0944.dir/link.txt --verbose=1
|
||||||
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_19af5.dir/testCCompiler.c.o -o cmTC_19af5
|
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_f0944.dir/testCCompiler.c.o -o cmTC_f0944
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Detecting C compiler ABI info compiled with the following output:
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/usr/bin/make cmTC_ac30f/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ac30f.dir/build.make CMakeFiles/cmTC_ac30f.dir/build
|
Run Build Command(s):/usr/bin/make cmTC_2d379/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_2d379.dir/build.make CMakeFiles/cmTC_2d379.dir/build
|
||||||
Building C object CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o
|
Building C object CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o
|
||||||
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
|
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
|
||||||
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
||||||
Target: x86_64-apple-darwin19.3.0
|
Target: x86_64-apple-darwin19.3.0
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
||||||
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
||||||
"/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
|
"/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
|
||||||
clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0
|
clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0
|
||||||
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
|
||||||
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"
|
||||||
@@ -59,14 +59,14 @@ ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX1
|
|||||||
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
|
||||||
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
|
||||||
End of search list.
|
End of search list.
|
||||||
Linking C executable cmTC_ac30f
|
Linking C executable cmTC_2d379
|
||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ac30f.dir/link.txt --verbose=1
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2d379.dir/link.txt --verbose=1
|
||||||
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o -o cmTC_ac30f
|
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o -o cmTC_2d379
|
||||||
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
||||||
Target: x86_64-apple-darwin19.3.0
|
Target: x86_64-apple-darwin19.3.0
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
||||||
"/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_ac30f -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
|
"/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_2d379 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
|
||||||
@(#)PROGRAM:ld PROJECT:ld64-530
|
@(#)PROGRAM:ld PROJECT:ld64-530
|
||||||
BUILD 18:57:17 Dec 13 2019
|
BUILD 18:57:17 Dec 13 2019
|
||||||
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
|
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
|
||||||
@@ -94,15 +94,15 @@ Parsed C implicit link information from above output:
|
|||||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
ignore line: [Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp]
|
ignore line: [Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [Run Build Command(s):/usr/bin/make cmTC_ac30f/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ac30f.dir/build.make CMakeFiles/cmTC_ac30f.dir/build]
|
ignore line: [Run Build Command(s):/usr/bin/make cmTC_2d379/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_2d379.dir/build.make CMakeFiles/cmTC_2d379.dir/build]
|
||||||
ignore line: [Building C object CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o]
|
ignore line: [Building C object CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o]
|
||||||
ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
|
ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
|
||||||
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
||||||
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
||||||
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
|
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
|
||||||
ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
|
ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
|
||||||
ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0]
|
ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"]
|
||||||
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"]
|
||||||
@@ -113,14 +113,14 @@ Parsed C implicit link information from above output:
|
|||||||
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
|
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
|
||||||
ignore line: [End of search list.]
|
ignore line: [End of search list.]
|
||||||
ignore line: [Linking C executable cmTC_ac30f]
|
ignore line: [Linking C executable cmTC_2d379]
|
||||||
ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ac30f.dir/link.txt --verbose=1]
|
ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2d379.dir/link.txt --verbose=1]
|
||||||
ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o -o cmTC_ac30f ]
|
ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o -o cmTC_2d379 ]
|
||||||
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
||||||
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
||||||
link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_ac30f -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_2d379 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
|
arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
|
||||||
arg [-demangle] ==> ignore
|
arg [-demangle] ==> ignore
|
||||||
arg [-lto_library] ==> ignore, skip following value
|
arg [-lto_library] ==> ignore, skip following value
|
||||||
@@ -133,11 +133,11 @@ Parsed C implicit link information from above output:
|
|||||||
arg [-syslibroot] ==> ignore
|
arg [-syslibroot] ==> ignore
|
||||||
arg [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk] ==> ignore
|
arg [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk] ==> ignore
|
||||||
arg [-o] ==> ignore
|
arg [-o] ==> ignore
|
||||||
arg [cmTC_ac30f] ==> ignore
|
arg [cmTC_2d379] ==> ignore
|
||||||
arg [-search_paths_first] ==> ignore
|
arg [-search_paths_first] ==> ignore
|
||||||
arg [-headerpad_max_install_names] ==> ignore
|
arg [-headerpad_max_install_names] ==> ignore
|
||||||
arg [-v] ==> ignore
|
arg [-v] ==> ignore
|
||||||
arg [CMakeFiles/cmTC_ac30f.dir/CMakeCCompilerABI.c.o] ==> ignore
|
arg [CMakeFiles/cmTC_2d379.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||||
arg [-lSystem] ==> lib [System]
|
arg [-lSystem] ==> lib [System]
|
||||||
arg [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
arg [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
|
Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
|
||||||
@@ -154,27 +154,27 @@ Parsed C implicit link information from above output:
|
|||||||
Determining if the CXX compiler works passed with the following output:
|
Determining if the CXX compiler works passed with the following output:
|
||||||
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/usr/bin/make cmTC_2c6da/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_2c6da.dir/build.make CMakeFiles/cmTC_2c6da.dir/build
|
Run Build Command(s):/usr/bin/make cmTC_62166/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_62166.dir/build.make CMakeFiles/cmTC_62166.dir/build
|
||||||
Building CXX object CMakeFiles/cmTC_2c6da.dir/testCXXCompiler.cxx.o
|
Building CXX object CMakeFiles/cmTC_62166.dir/testCXXCompiler.cxx.o
|
||||||
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_2c6da.dir/testCXXCompiler.cxx.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
|
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_62166.dir/testCXXCompiler.cxx.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
|
||||||
Linking CXX executable cmTC_2c6da
|
Linking CXX executable cmTC_62166
|
||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c6da.dir/link.txt --verbose=1
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_62166.dir/link.txt --verbose=1
|
||||||
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_2c6da.dir/testCXXCompiler.cxx.o -o cmTC_2c6da
|
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_62166.dir/testCXXCompiler.cxx.o -o cmTC_62166
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Detecting CXX compiler ABI info compiled with the following output:
|
Detecting CXX compiler ABI info compiled with the following output:
|
||||||
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/usr/bin/make cmTC_2e9eb/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_2e9eb.dir/build.make CMakeFiles/cmTC_2e9eb.dir/build
|
Run Build Command(s):/usr/bin/make cmTC_34344/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_34344.dir/build.make CMakeFiles/cmTC_34344.dir/build
|
||||||
Building CXX object CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o
|
Building CXX object CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o
|
||||||
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
|
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
|
||||||
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
||||||
Target: x86_64-apple-darwin19.3.0
|
Target: x86_64-apple-darwin19.3.0
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
||||||
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
||||||
"/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
|
"/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
|
||||||
clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0
|
clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0
|
||||||
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"
|
||||||
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
|
||||||
@@ -187,14 +187,14 @@ ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX1
|
|||||||
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
|
||||||
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
|
||||||
End of search list.
|
End of search list.
|
||||||
Linking CXX executable cmTC_2e9eb
|
Linking CXX executable cmTC_34344
|
||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2e9eb.dir/link.txt --verbose=1
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_34344.dir/link.txt --verbose=1
|
||||||
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_2e9eb
|
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_34344
|
||||||
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
||||||
Target: x86_64-apple-darwin19.3.0
|
Target: x86_64-apple-darwin19.3.0
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
||||||
"/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_2e9eb -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
|
"/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_34344 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
|
||||||
@(#)PROGRAM:ld PROJECT:ld64-530
|
@(#)PROGRAM:ld PROJECT:ld64-530
|
||||||
BUILD 18:57:17 Dec 13 2019
|
BUILD 18:57:17 Dec 13 2019
|
||||||
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
|
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
|
||||||
@@ -224,15 +224,15 @@ Parsed CXX implicit link information from above output:
|
|||||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
ignore line: [Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp]
|
ignore line: [Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [Run Build Command(s):/usr/bin/make cmTC_2e9eb/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_2e9eb.dir/build.make CMakeFiles/cmTC_2e9eb.dir/build]
|
ignore line: [Run Build Command(s):/usr/bin/make cmTC_34344/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_34344.dir/build.make CMakeFiles/cmTC_34344.dir/build]
|
||||||
ignore line: [Building CXX object CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o]
|
ignore line: [Building CXX object CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o]
|
||||||
ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
|
ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
|
||||||
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
||||||
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
||||||
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
|
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
|
||||||
ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
|
ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
|
||||||
ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0]
|
ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"]
|
||||||
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"]
|
||||||
@@ -245,14 +245,14 @@ Parsed CXX implicit link information from above output:
|
|||||||
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
|
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
|
||||||
ignore line: [End of search list.]
|
ignore line: [End of search list.]
|
||||||
ignore line: [Linking CXX executable cmTC_2e9eb]
|
ignore line: [Linking CXX executable cmTC_34344]
|
||||||
ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2e9eb.dir/link.txt --verbose=1]
|
ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_34344.dir/link.txt --verbose=1]
|
||||||
ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_2e9eb ]
|
ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_34344 ]
|
||||||
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
||||||
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
||||||
link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_2e9eb -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_34344 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
|
arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
|
||||||
arg [-demangle] ==> ignore
|
arg [-demangle] ==> ignore
|
||||||
arg [-lto_library] ==> ignore, skip following value
|
arg [-lto_library] ==> ignore, skip following value
|
||||||
@@ -265,11 +265,11 @@ Parsed CXX implicit link information from above output:
|
|||||||
arg [-syslibroot] ==> ignore
|
arg [-syslibroot] ==> ignore
|
||||||
arg [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk] ==> ignore
|
arg [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk] ==> ignore
|
||||||
arg [-o] ==> ignore
|
arg [-o] ==> ignore
|
||||||
arg [cmTC_2e9eb] ==> ignore
|
arg [cmTC_34344] ==> ignore
|
||||||
arg [-search_paths_first] ==> ignore
|
arg [-search_paths_first] ==> ignore
|
||||||
arg [-headerpad_max_install_names] ==> ignore
|
arg [-headerpad_max_install_names] ==> ignore
|
||||||
arg [-v] ==> ignore
|
arg [-v] ==> ignore
|
||||||
arg [CMakeFiles/cmTC_2e9eb.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
arg [CMakeFiles/cmTC_34344.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
||||||
arg [-lc++] ==> lib [c++]
|
arg [-lc++] ==> lib [c++]
|
||||||
arg [-lSystem] ==> lib [System]
|
arg [-lSystem] ==> lib [System]
|
||||||
arg [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
arg [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
# Hashes of file build rules.
|
|
||||||
9a8a666313ee40b40e2628a6414989d0 CMakeFiles/ClangFormat
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
# The set of languages for which implicit dependencies are needed:
|
|
||||||
set(CMAKE_DEPENDS_LANGUAGES
|
|
||||||
)
|
|
||||||
# The set of files for implicit dependencies of each language:
|
|
||||||
|
|
||||||
# Targets to which this target links.
|
|
||||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
|
||||||
)
|
|
||||||
|
|
||||||
# Fortran module output directory.
|
|
||||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
||||||
@@ -1,76 +0,0 @@
|
|||||||
# CMAKE generated file: DO NOT EDIT!
|
|
||||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
|
||||||
|
|
||||||
# Delete rule output on recipe failure.
|
|
||||||
.DELETE_ON_ERROR:
|
|
||||||
|
|
||||||
|
|
||||||
#=============================================================================
|
|
||||||
# Special targets provided by cmake.
|
|
||||||
|
|
||||||
# Disable implicit rules so canonical targets will work.
|
|
||||||
.SUFFIXES:
|
|
||||||
|
|
||||||
|
|
||||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
|
||||||
SUFFIXES =
|
|
||||||
|
|
||||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
|
||||||
|
|
||||||
|
|
||||||
# Suppress display of executed commands.
|
|
||||||
$(VERBOSE).SILENT:
|
|
||||||
|
|
||||||
|
|
||||||
# A target that is always out of date.
|
|
||||||
cmake_force:
|
|
||||||
|
|
||||||
.PHONY : cmake_force
|
|
||||||
|
|
||||||
#=============================================================================
|
|
||||||
# Set environment variables for the build.
|
|
||||||
|
|
||||||
# The shell in which to execute make rules.
|
|
||||||
SHELL = /bin/sh
|
|
||||||
|
|
||||||
# The CMake executable.
|
|
||||||
CMAKE_COMMAND = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
|
|
||||||
|
|
||||||
# The command to remove a file.
|
|
||||||
RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
|
|
||||||
|
|
||||||
# Escaping for special characters.
|
|
||||||
EQUALS = =
|
|
||||||
|
|
||||||
# The top-level source directory on which CMake was run.
|
|
||||||
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject
|
|
||||||
|
|
||||||
# The top-level build directory on which CMake was run.
|
|
||||||
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug
|
|
||||||
|
|
||||||
# Utility rule file for ClangFormat.
|
|
||||||
|
|
||||||
# Include the progress variables for this target.
|
|
||||||
include CMakeFiles/ClangFormat.dir/progress.make
|
|
||||||
|
|
||||||
CMakeFiles/ClangFormat:
|
|
||||||
/usr/local/bin/clang-format -i -style=file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/main.cpp
|
|
||||||
|
|
||||||
ClangFormat: CMakeFiles/ClangFormat
|
|
||||||
ClangFormat: CMakeFiles/ClangFormat.dir/build.make
|
|
||||||
|
|
||||||
.PHONY : ClangFormat
|
|
||||||
|
|
||||||
# Rule to build all files generated by this target.
|
|
||||||
CMakeFiles/ClangFormat.dir/build: ClangFormat
|
|
||||||
|
|
||||||
.PHONY : CMakeFiles/ClangFormat.dir/build
|
|
||||||
|
|
||||||
CMakeFiles/ClangFormat.dir/clean:
|
|
||||||
$(CMAKE_COMMAND) -P CMakeFiles/ClangFormat.dir/cmake_clean.cmake
|
|
||||||
.PHONY : CMakeFiles/ClangFormat.dir/clean
|
|
||||||
|
|
||||||
CMakeFiles/ClangFormat.dir/depend:
|
|
||||||
cd /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/ClangFormat.dir/DependInfo.cmake --color=$(COLOR)
|
|
||||||
.PHONY : CMakeFiles/ClangFormat.dir/depend
|
|
||||||
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
file(REMOVE_RECURSE
|
|
||||||
"CMakeFiles/ClangFormat"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Per-language clean rules from dependency scanning.
|
|
||||||
foreach(lang )
|
|
||||||
include(CMakeFiles/ClangFormat.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
|
||||||
endforeach()
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
# The set of languages for which implicit dependencies are needed:
|
|
||||||
set(CMAKE_DEPENDS_LANGUAGES
|
|
||||||
"CXX"
|
|
||||||
)
|
|
||||||
# The set of files for implicit dependencies of each language:
|
|
||||||
set(CMAKE_DEPENDS_CHECK_CXX
|
|
||||||
"/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/main.cpp" "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/FinalProject.dir/main.cpp.o"
|
|
||||||
)
|
|
||||||
set(CMAKE_CXX_COMPILER_ID "AppleClang")
|
|
||||||
|
|
||||||
# The include file search paths:
|
|
||||||
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
|
||||||
)
|
|
||||||
|
|
||||||
# Targets to which this target links.
|
|
||||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
|
||||||
)
|
|
||||||
|
|
||||||
# Fortran module output directory.
|
|
||||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
|
||||||
@@ -1,98 +0,0 @@
|
|||||||
# CMAKE generated file: DO NOT EDIT!
|
|
||||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
|
||||||
|
|
||||||
# Delete rule output on recipe failure.
|
|
||||||
.DELETE_ON_ERROR:
|
|
||||||
|
|
||||||
|
|
||||||
#=============================================================================
|
|
||||||
# Special targets provided by cmake.
|
|
||||||
|
|
||||||
# Disable implicit rules so canonical targets will work.
|
|
||||||
.SUFFIXES:
|
|
||||||
|
|
||||||
|
|
||||||
# Remove some rules from gmake that .SUFFIXES does not remove.
|
|
||||||
SUFFIXES =
|
|
||||||
|
|
||||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
|
||||||
|
|
||||||
|
|
||||||
# Suppress display of executed commands.
|
|
||||||
$(VERBOSE).SILENT:
|
|
||||||
|
|
||||||
|
|
||||||
# A target that is always out of date.
|
|
||||||
cmake_force:
|
|
||||||
|
|
||||||
.PHONY : cmake_force
|
|
||||||
|
|
||||||
#=============================================================================
|
|
||||||
# Set environment variables for the build.
|
|
||||||
|
|
||||||
# The shell in which to execute make rules.
|
|
||||||
SHELL = /bin/sh
|
|
||||||
|
|
||||||
# The CMake executable.
|
|
||||||
CMAKE_COMMAND = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
|
|
||||||
|
|
||||||
# The command to remove a file.
|
|
||||||
RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
|
|
||||||
|
|
||||||
# Escaping for special characters.
|
|
||||||
EQUALS = =
|
|
||||||
|
|
||||||
# The top-level source directory on which CMake was run.
|
|
||||||
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject
|
|
||||||
|
|
||||||
# The top-level build directory on which CMake was run.
|
|
||||||
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug
|
|
||||||
|
|
||||||
# Include any dependencies generated for this target.
|
|
||||||
include CMakeFiles/FinalProject.dir/depend.make
|
|
||||||
|
|
||||||
# Include the progress variables for this target.
|
|
||||||
include CMakeFiles/FinalProject.dir/progress.make
|
|
||||||
|
|
||||||
# Include the compile flags for this target's objects.
|
|
||||||
include CMakeFiles/FinalProject.dir/flags.make
|
|
||||||
|
|
||||||
CMakeFiles/FinalProject.dir/main.cpp.o: CMakeFiles/FinalProject.dir/flags.make
|
|
||||||
CMakeFiles/FinalProject.dir/main.cpp.o: ../main.cpp
|
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/FinalProject.dir/main.cpp.o"
|
|
||||||
/Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/FinalProject.dir/main.cpp.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/main.cpp
|
|
||||||
|
|
||||||
CMakeFiles/FinalProject.dir/main.cpp.i: cmake_force
|
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/FinalProject.dir/main.cpp.i"
|
|
||||||
/Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/main.cpp > CMakeFiles/FinalProject.dir/main.cpp.i
|
|
||||||
|
|
||||||
CMakeFiles/FinalProject.dir/main.cpp.s: cmake_force
|
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/FinalProject.dir/main.cpp.s"
|
|
||||||
/Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/main.cpp -o CMakeFiles/FinalProject.dir/main.cpp.s
|
|
||||||
|
|
||||||
# Object files for target FinalProject
|
|
||||||
FinalProject_OBJECTS = \
|
|
||||||
"CMakeFiles/FinalProject.dir/main.cpp.o"
|
|
||||||
|
|
||||||
# External object files for target FinalProject
|
|
||||||
FinalProject_EXTERNAL_OBJECTS =
|
|
||||||
|
|
||||||
FinalProject: CMakeFiles/FinalProject.dir/main.cpp.o
|
|
||||||
FinalProject: CMakeFiles/FinalProject.dir/build.make
|
|
||||||
FinalProject: CMakeFiles/FinalProject.dir/link.txt
|
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable FinalProject"
|
|
||||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FinalProject.dir/link.txt --verbose=$(VERBOSE)
|
|
||||||
|
|
||||||
# Rule to build all files generated by this target.
|
|
||||||
CMakeFiles/FinalProject.dir/build: FinalProject
|
|
||||||
|
|
||||||
.PHONY : CMakeFiles/FinalProject.dir/build
|
|
||||||
|
|
||||||
CMakeFiles/FinalProject.dir/clean:
|
|
||||||
$(CMAKE_COMMAND) -P CMakeFiles/FinalProject.dir/cmake_clean.cmake
|
|
||||||
.PHONY : CMakeFiles/FinalProject.dir/clean
|
|
||||||
|
|
||||||
CMakeFiles/FinalProject.dir/depend:
|
|
||||||
cd /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/FinalProject.dir/DependInfo.cmake --color=$(COLOR)
|
|
||||||
.PHONY : CMakeFiles/FinalProject.dir/depend
|
|
||||||
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
file(REMOVE_RECURSE
|
|
||||||
"CMakeFiles/FinalProject.dir/main.cpp.o"
|
|
||||||
"FinalProject"
|
|
||||||
"FinalProject.pdb"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Per-language clean rules from dependency scanning.
|
|
||||||
foreach(lang CXX)
|
|
||||||
include(CMakeFiles/FinalProject.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
|
||||||
endforeach()
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
# Empty dependencies file for FinalProject.
|
|
||||||
# This may be replaced when dependencies are built.
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
# CMAKE generated file: DO NOT EDIT!
|
|
||||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
|
||||||
|
|
||||||
# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++
|
|
||||||
CXX_FLAGS = -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=gnu++14
|
|
||||||
|
|
||||||
CXX_DEFINES =
|
|
||||||
|
|
||||||
CXX_INCLUDES =
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
/Library/Developer/CommandLineTools/usr/bin/c++ -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/FinalProject.dir/main.cpp.o -o FinalProject
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
CMAKE_PROGRESS_1 = 1
|
|
||||||
CMAKE_PROGRESS_2 = 2
|
|
||||||
|
|
||||||
@@ -16,6 +16,7 @@ set(CMAKE_TARGET_DEFINITIONS_CXX
|
|||||||
# The include file search paths:
|
# The include file search paths:
|
||||||
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||||
"/usr/local/Cellar/open-mpi/4.0.2/include"
|
"/usr/local/Cellar/open-mpi/4.0.2/include"
|
||||||
|
"/usr/local/include"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Targets to which this target links.
|
# Targets to which this target links.
|
||||||
|
|||||||
@@ -1,2 +1,7 @@
|
|||||||
# Empty dependencies file for HW10.
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
# This may be replaced when dependencies are built.
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
||||||
|
|
||||||
|
CMakeFiles/HW10.dir/main.cpp.o: ../main.cpp
|
||||||
|
CMakeFiles/HW10.dir/main.cpp.o: /usr/local/Cellar/open-mpi/4.0.2/include/mpi.h
|
||||||
|
CMakeFiles/HW10.dir/main.cpp.o: /usr/local/Cellar/open-mpi/4.0.2/include/mpi_portable_platform.h
|
||||||
|
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ CXX_FLAGS = -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sd
|
|||||||
|
|
||||||
CXX_DEFINES = -DOMPI_SKIP_MPICXX
|
CXX_DEFINES = -DOMPI_SKIP_MPICXX
|
||||||
|
|
||||||
CXX_INCLUDES = -isystem /usr/local/Cellar/open-mpi/4.0.2/include
|
CXX_INCLUDES = -isystem /usr/local/Cellar/open-mpi/4.0.2/include -isystem /usr/local/include
|
||||||
|
|
||||||
|
|||||||
@@ -42,6 +42,9 @@ set(CMAKE_MAKEFILE_DEPENDS
|
|||||||
"CMakeFiles/3.15.3/CMakeCXXCompiler.cmake"
|
"CMakeFiles/3.15.3/CMakeCXXCompiler.cmake"
|
||||||
"CMakeFiles/3.15.3/CMakeSystem.cmake"
|
"CMakeFiles/3.15.3/CMakeSystem.cmake"
|
||||||
"CMakeFiles/FindMPI/test_mpi.cpp"
|
"CMakeFiles/FindMPI/test_mpi.cpp"
|
||||||
|
"/usr/local/lib/cmake/nlohmann_json/nlohmann_jsonConfig.cmake"
|
||||||
|
"/usr/local/lib/cmake/nlohmann_json/nlohmann_jsonConfigVersion.cmake"
|
||||||
|
"/usr/local/lib/cmake/nlohmann_json/nlohmann_jsonTargets.cmake"
|
||||||
)
|
)
|
||||||
|
|
||||||
# The corresponding makefile is:
|
# The corresponding makefile is:
|
||||||
@@ -52,7 +55,6 @@ set(CMAKE_MAKEFILE_OUTPUTS
|
|||||||
|
|
||||||
# Byproducts of CMake generate step:
|
# Byproducts of CMake generate step:
|
||||||
set(CMAKE_MAKEFILE_PRODUCTS
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
"CMakeFiles/FindMPI/test_mpi.cpp"
|
|
||||||
"CMakeFiles/FindMPI/test_mpi.cpp"
|
"CMakeFiles/FindMPI/test_mpi.cpp"
|
||||||
"CMakeFiles/FindMPI/test_mpi.cpp"
|
"CMakeFiles/FindMPI/test_mpi.cpp"
|
||||||
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
@@ -60,6 +62,5 @@ set(CMAKE_MAKEFILE_PRODUCTS
|
|||||||
|
|
||||||
# Dependency information for all targets:
|
# Dependency information for all targets:
|
||||||
set(CMAKE_DEPEND_INFO_FILES
|
set(CMAKE_DEPEND_INFO_FILES
|
||||||
"CMakeFiles/ClangFormat.dir/DependInfo.cmake"
|
|
||||||
"CMakeFiles/HW10.dir/DependInfo.cmake"
|
"CMakeFiles/HW10.dir/DependInfo.cmake"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -58,7 +58,6 @@ all: CMakeFiles/HW10.dir/all
|
|||||||
.PHONY : all
|
.PHONY : all
|
||||||
|
|
||||||
# The main recursive "clean" target.
|
# The main recursive "clean" target.
|
||||||
clean: CMakeFiles/ClangFormat.dir/clean
|
|
||||||
clean: CMakeFiles/HW10.dir/clean
|
clean: CMakeFiles/HW10.dir/clean
|
||||||
|
|
||||||
.PHONY : clean
|
.PHONY : clean
|
||||||
@@ -68,33 +67,6 @@ preinstall:
|
|||||||
|
|
||||||
.PHONY : preinstall
|
.PHONY : preinstall
|
||||||
|
|
||||||
#=============================================================================
|
|
||||||
# Target rules for target CMakeFiles/ClangFormat.dir
|
|
||||||
|
|
||||||
# All Build rule for target.
|
|
||||||
CMakeFiles/ClangFormat.dir/all:
|
|
||||||
$(MAKE) -f CMakeFiles/ClangFormat.dir/build.make CMakeFiles/ClangFormat.dir/depend
|
|
||||||
$(MAKE) -f CMakeFiles/ClangFormat.dir/build.make CMakeFiles/ClangFormat.dir/build
|
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles --progress-num= "Built target ClangFormat"
|
|
||||||
.PHONY : CMakeFiles/ClangFormat.dir/all
|
|
||||||
|
|
||||||
# Build rule for subdir invocation for target.
|
|
||||||
CMakeFiles/ClangFormat.dir/rule: cmake_check_build_system
|
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles 0
|
|
||||||
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ClangFormat.dir/all
|
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles 0
|
|
||||||
.PHONY : CMakeFiles/ClangFormat.dir/rule
|
|
||||||
|
|
||||||
# Convenience name for target.
|
|
||||||
ClangFormat: CMakeFiles/ClangFormat.dir/rule
|
|
||||||
|
|
||||||
.PHONY : ClangFormat
|
|
||||||
|
|
||||||
# clean rule for target.
|
|
||||||
CMakeFiles/ClangFormat.dir/clean:
|
|
||||||
$(MAKE) -f CMakeFiles/ClangFormat.dir/build.make CMakeFiles/ClangFormat.dir/clean
|
|
||||||
.PHONY : CMakeFiles/ClangFormat.dir/clean
|
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
# Target rules for target CMakeFiles/HW10.dir
|
# Target rules for target CMakeFiles/HW10.dir
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/edit_cache.dir
|
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/edit_cache.dir
|
||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/ClangFormat.dir
|
|
||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/HW10.dir
|
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/CMakeFiles/HW10.dir
|
||||||
|
|||||||
@@ -1,7 +1,4 @@
|
|||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject
|
||||||
-- Found MPI_C: /usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib (found version "3.1")
|
|
||||||
-- Found MPI_CXX: /usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib (found version "3.1")
|
|
||||||
-- Found MPI: TRUE (found version "3.1")
|
|
||||||
-- Configuring done
|
-- Configuring done
|
||||||
-- Generating done
|
-- Generating done
|
||||||
-- Build files have been written to: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug
|
-- Build files have been written to: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<Option title="FinalProject"/>
|
<Option title="FinalProject"/>
|
||||||
<Option makefile_is_custom="1"/>
|
<Option makefile_is_custom="1"/>
|
||||||
<Option compiler="gcc"/>
|
<Option compiler="gcc"/>
|
||||||
<Option virtualFolders="CMake Files\;"/>
|
<Option virtualFolders="CMake Files\;CMake Files\..\;CMake Files\..\..\;CMake Files\..\..\..\;CMake Files\..\..\..\..\;CMake Files\..\..\..\..\..\;CMake Files\..\..\..\..\..\usr\;CMake Files\..\..\..\..\..\usr\local\;CMake Files\..\..\..\..\..\usr\local\lib\;CMake Files\..\..\..\..\..\usr\local\lib\cmake\;CMake Files\..\..\..\..\..\usr\local\lib\cmake\nlohmann_json\;"/>
|
||||||
<Build>
|
<Build>
|
||||||
<Target title="all">
|
<Target title="all">
|
||||||
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug"/>
|
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug"/>
|
||||||
@@ -37,16 +37,6 @@
|
|||||||
<DistClean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="ClangFormat">
|
|
||||||
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug"/>
|
|
||||||
<Option type="4"/>
|
|
||||||
<MakeCommands>
|
|
||||||
<Build command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/Makefile" VERBOSE=1 ClangFormat"/>
|
|
||||||
<CompileFile command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
|
||||||
<Clean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
|
||||||
<DistClean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
|
||||||
</MakeCommands>
|
|
||||||
</Target>
|
|
||||||
<Target title="HW10">
|
<Target title="HW10">
|
||||||
<Option output="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/HW10" prefix_auto="0" extension_auto="0"/>
|
<Option output="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug/HW10" prefix_auto="0" extension_auto="0"/>
|
||||||
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug"/>
|
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/cmake-build-debug"/>
|
||||||
@@ -56,8 +46,8 @@
|
|||||||
<Compiler>
|
<Compiler>
|
||||||
<Add option="-DOMPI_SKIP_MPICXX"/>
|
<Add option="-DOMPI_SKIP_MPICXX"/>
|
||||||
<Add directory="/usr/local/Cellar/open-mpi/4.0.2/include"/>
|
<Add directory="/usr/local/Cellar/open-mpi/4.0.2/include"/>
|
||||||
<Add directory="/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"/>
|
|
||||||
<Add directory="/usr/local/include"/>
|
<Add directory="/usr/local/include"/>
|
||||||
|
<Add directory="/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"/>
|
||||||
<Add directory="/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include"/>
|
||||||
<Add directory="/Library/Developer/CommandLineTools/usr/include"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/include"/>
|
||||||
<Add directory="/System/Library/Frameworks"/>
|
<Add directory="/System/Library/Frameworks"/>
|
||||||
@@ -79,8 +69,8 @@
|
|||||||
<Compiler>
|
<Compiler>
|
||||||
<Add option="-DOMPI_SKIP_MPICXX"/>
|
<Add option="-DOMPI_SKIP_MPICXX"/>
|
||||||
<Add directory="/usr/local/Cellar/open-mpi/4.0.2/include"/>
|
<Add directory="/usr/local/Cellar/open-mpi/4.0.2/include"/>
|
||||||
<Add directory="/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"/>
|
|
||||||
<Add directory="/usr/local/include"/>
|
<Add directory="/usr/local/include"/>
|
||||||
|
<Add directory="/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"/>
|
||||||
<Add directory="/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include"/>
|
||||||
<Add directory="/Library/Developer/CommandLineTools/usr/include"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/include"/>
|
||||||
<Add directory="/System/Library/Frameworks"/>
|
<Add directory="/System/Library/Frameworks"/>
|
||||||
@@ -100,5 +90,14 @@
|
|||||||
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/CMakeLists.txt">
|
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/CMakeLists.txt">
|
||||||
<Option virtualFolder="CMake Files\"/>
|
<Option virtualFolder="CMake Files\"/>
|
||||||
</Unit>
|
</Unit>
|
||||||
|
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/../../../../../usr/local/lib/cmake/nlohmann_json/nlohmann_jsonConfig.cmake">
|
||||||
|
<Option virtualFolder="CMake Files\..\..\..\..\..\usr\local\lib\cmake\nlohmann_json\"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/../../../../../usr/local/lib/cmake/nlohmann_json/nlohmann_jsonConfigVersion.cmake">
|
||||||
|
<Option virtualFolder="CMake Files\..\..\..\..\..\usr\local\lib\cmake\nlohmann_json\"/>
|
||||||
|
</Unit>
|
||||||
|
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/FinalProject/../../../../../usr/local/lib/cmake/nlohmann_json/nlohmann_jsonTargets.cmake">
|
||||||
|
<Option virtualFolder="CMake Files\..\..\..\..\..\usr\local\lib\cmake\nlohmann_json\"/>
|
||||||
|
</Unit>
|
||||||
</Project>
|
</Project>
|
||||||
</CodeBlocks_project_file>
|
</CodeBlocks_project_file>
|
||||||
|
|||||||
@@ -110,19 +110,6 @@ depend:
|
|||||||
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||||
.PHONY : depend
|
.PHONY : depend
|
||||||
|
|
||||||
#=============================================================================
|
|
||||||
# Target rules for targets named ClangFormat
|
|
||||||
|
|
||||||
# Build rule for target.
|
|
||||||
ClangFormat: cmake_check_build_system
|
|
||||||
$(MAKE) -f CMakeFiles/Makefile2 ClangFormat
|
|
||||||
.PHONY : ClangFormat
|
|
||||||
|
|
||||||
# fast build rule for target.
|
|
||||||
ClangFormat/fast:
|
|
||||||
$(MAKE) -f CMakeFiles/ClangFormat.dir/build.make CMakeFiles/ClangFormat.dir/build
|
|
||||||
.PHONY : ClangFormat/fast
|
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
# Target rules for targets named HW10
|
# Target rules for targets named HW10
|
||||||
|
|
||||||
@@ -171,7 +158,6 @@ help:
|
|||||||
@echo "... depend"
|
@echo "... depend"
|
||||||
@echo "... rebuild_cache"
|
@echo "... rebuild_cache"
|
||||||
@echo "... edit_cache"
|
@echo "... edit_cache"
|
||||||
@echo "... ClangFormat"
|
|
||||||
@echo "... HW10"
|
@echo "... HW10"
|
||||||
@echo "... main.o"
|
@echo "... main.o"
|
||||||
@echo "... main.i"
|
@echo "... main.i"
|
||||||
|
|||||||
@@ -1,31 +1,76 @@
|
|||||||
|
#include <fstream>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <mpi.h>
|
#include <mpi.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#define MCW MPI_COMM_WORLD
|
#define MCW MPI_COMM_WORLD
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
struct Matrix{
|
||||||
|
int M, N;
|
||||||
|
double** matrix;
|
||||||
|
};
|
||||||
|
|
||||||
//Problem size
|
//Problem size
|
||||||
const int N = 10;
|
const int N = 10;
|
||||||
|
vector<Matrix> matricies;
|
||||||
//global variables
|
//global variables
|
||||||
double A[N][N];
|
double A[N][N];
|
||||||
double B[N][N];
|
double B[N][N];
|
||||||
double AB[N][N];
|
double AB[N][N];
|
||||||
double AB_serial[N][N];
|
double AB_serial[N][N];
|
||||||
|
|
||||||
|
void fill_matrices();
|
||||||
|
void print_matrix(double mat[][N]);
|
||||||
|
void serial_version();
|
||||||
|
void compute_interval(int start, int interval);
|
||||||
|
void multiplyMatrix(int rank, int size);
|
||||||
|
void read_in_matrices();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc, char** argv){
|
||||||
|
int rank, size;
|
||||||
|
MPI_Init(&argc, &argv);
|
||||||
|
MPI_Comm_rank(MCW, &rank);
|
||||||
|
MPI_Comm_size(MCW, &size);
|
||||||
|
multiplyMatrix(rank, size);
|
||||||
|
if(!rank)
|
||||||
|
read_in_matrices();
|
||||||
|
MPI_Finalize();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void read_in_matrices(){
|
||||||
|
for(int i = 0; i < 2; i++) {
|
||||||
|
Matrix* matrix = new Matrix;
|
||||||
|
ifstream f("Matrix.txt");
|
||||||
|
f >> matrix->M >> matrix->N;
|
||||||
|
// Allocate memory
|
||||||
|
matrix->matrix = new double *[matrix->M];
|
||||||
|
for (int i = 0; i < matrix->M; ++i)
|
||||||
|
matrix->matrix[i] = new double[N];
|
||||||
|
|
||||||
|
for (int i = 0; i < matrix->M; i++)
|
||||||
|
for (int j = 0; j < matrix->N; j++)
|
||||||
|
f >> matrix->matrix[i][j];
|
||||||
|
matricies.push_back(*matrix);
|
||||||
|
}
|
||||||
|
}
|
||||||
//Function to fill matrices at random
|
//Function to fill matrices at random
|
||||||
void fill_matrices(){
|
void fill_matrices(){
|
||||||
srand(time(NULL));
|
srand(time(NULL));
|
||||||
|
|
||||||
for(int i = 0; i <N; i++){
|
for(int i = 0; i <N; i++){
|
||||||
for (int j = 0; j < N; j++){
|
for (int j = 0; j < N; j++){
|
||||||
A[i][j] = rand() %4;
|
A[i][j] = rand() %4;
|
||||||
B[i][j] = rand() %4;
|
B[i][j] = rand() %4;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Function to print matrix
|
//Function to print matrix
|
||||||
void print_matrix(double mat[][N]){
|
void print_matrix(double mat[][N]){
|
||||||
for (int i = 0; i < N; i++){
|
for (int i = 0; i < N; i++){
|
||||||
@@ -36,31 +81,28 @@ void print_matrix(double mat[][N]){
|
|||||||
}
|
}
|
||||||
cout << endl;
|
cout << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Serial version of solution
|
//Serial version of solution
|
||||||
void serial_version(){
|
void serial_version(){
|
||||||
for (int i = 0; i <N; i++){
|
for (int i = 0; i <N; i++){
|
||||||
for (int j = 0; j < N;j++){
|
for (int j = 0; j < N;j++){
|
||||||
AB_serial[i][j] = 0;
|
AB_serial[i][j] = 0;
|
||||||
for (int k = 0; k <N; k++){
|
for (int k = 0; k <N; k++){
|
||||||
AB_serial[i][j] += A[i][k]*B[k][j];
|
AB_serial[i][j] += A[i][k]*B[k][j];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//Compute interval multiplication
|
//Compute interval multiplication
|
||||||
void compute_interval(int start,int interval){
|
void compute_interval(int start,int interval){
|
||||||
for(int i = start; i <start+interval;i++){
|
for(int i = start; i <start+interval;i++){
|
||||||
for (int j = 0; j <N; j++){
|
for (int j = 0; j <N; j++){
|
||||||
AB[i][j] = 0;
|
AB[i][j] = 0;
|
||||||
for (int k = 0; k <N; k++){
|
for (int k = 0; k <N; k++){
|
||||||
AB[i][j] += A[i][k]*B[k][j];
|
AB[i][j] += A[i][k]*B[k][j];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void multiplyMatrix(int rank, int size){
|
void multiplyMatrix(int rank, int size){
|
||||||
//timing variables
|
//timing variables
|
||||||
double time1,time2,time3;
|
double time1,time2,time3;
|
||||||
@@ -119,17 +161,3 @@ void multiplyMatrix(int rank, int size){
|
|||||||
print_matrix(AB_serial);
|
print_matrix(AB_serial);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char** argv){
|
|
||||||
int interval, remainder, rank, size;
|
|
||||||
MPI_Init(&argc, &argv);
|
|
||||||
MPI_Comm_rank(MCW, &rank);
|
|
||||||
MPI_Comm_size(MCW, &size);
|
|
||||||
multiplyMatrix(rank, size);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
MPI_Finalize();
|
|
||||||
}
|
|
||||||
|
|||||||
42
HW7/.idea/workspace.xml
generated
42
HW7/.idea/workspace.xml
generated
@@ -39,7 +39,32 @@
|
|||||||
</component>
|
</component>
|
||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="2c8533ba-540f-4e3f-9945-3ca06f59f247" name="Default Changelist" comment="">
|
<list default="true" id="2c8533ba-540f-4e3f-9945-3ca06f59f247" name="Default Changelist" comment="">
|
||||||
|
<change afterPath="$PROJECT_DIR$/.idea/codeStyles/codeStyleConfig.xml" afterDir="false" />
|
||||||
|
<change afterPath="$PROJECT_DIR$/.idea/inspectionProfiles/Project_Default.xml" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/CMakeLists.txt" beforeDir="false" afterPath="$PROJECT_DIR$/CMakeLists.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeCache.txt" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeCache.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/CMakeOutput.log" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/CMakeOutput.log" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/FindMPI/test_mpi_C.bin" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/FindMPI/test_mpi_C.bin" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/FindMPI/test_mpi_CXX.bin" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/FindMPI/test_mpi_CXX.bin" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/Makefile.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/Makefile.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/Makefile2" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/Makefile2" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/TargetDirectories.txt" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/TargetDirectories.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/clion-log.txt" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/clion-log.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/CXX.includecache" beforeDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/DependInfo.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/DependInfo.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/build.make" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/build.make" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/depend.internal" beforeDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/depend.make" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/depend.make" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/flags.make" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/flags.make" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/link.txt" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/link.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/CMakeFiles/main.dir/main.cpp.o" beforeDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/HW7.cbp" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/HW7.cbp" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/Makefile" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/Makefile" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/cmake-build-debug/cmake_install.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/cmake-build-debug/cmake_install.cmake" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/main.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/main.cpp" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/main.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/main.cpp" afterDir="false" />
|
||||||
</list>
|
</list>
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
@@ -54,6 +79,9 @@
|
|||||||
<component name="Git.Settings">
|
<component name="Git.Settings">
|
||||||
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/.." />
|
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/.." />
|
||||||
</component>
|
</component>
|
||||||
|
<component name="MacroExpansionManager">
|
||||||
|
<option name="directoryName" value="UBNJTozy" />
|
||||||
|
</component>
|
||||||
<component name="ProjectId" id="1ZEInRSNTkqGaSVWBoFQVl9l6Ej" />
|
<component name="ProjectId" id="1ZEInRSNTkqGaSVWBoFQVl9l6Ej" />
|
||||||
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
||||||
<component name="ProjectViewState">
|
<component name="ProjectViewState">
|
||||||
@@ -63,7 +91,9 @@
|
|||||||
</component>
|
</component>
|
||||||
<component name="PropertiesComponent">
|
<component name="PropertiesComponent">
|
||||||
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
|
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
|
||||||
|
<property name="SHARE_PROJECT_CONFIGURATION_FILES" value="true" />
|
||||||
<property name="WebServerToolWindowFactoryState" value="false" />
|
<property name="WebServerToolWindowFactoryState" value="false" />
|
||||||
|
<property name="cf.advertisement.text.overridden" value="true" />
|
||||||
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
||||||
<property name="node.js.detected.package.eslint" value="true" />
|
<property name="node.js.detected.package.eslint" value="true" />
|
||||||
<property name="node.js.detected.package.tslint" value="true" />
|
<property name="node.js.detected.package.tslint" value="true" />
|
||||||
@@ -74,6 +104,18 @@
|
|||||||
<property name="run.code.analysis.last.selected.profile" value="pProject Default" />
|
<property name="run.code.analysis.last.selected.profile" value="pProject Default" />
|
||||||
<property name="settings.editor.selected.configurable" value="inlay.hints.ObjectiveC" />
|
<property name="settings.editor.selected.configurable" value="inlay.hints.ObjectiveC" />
|
||||||
</component>
|
</component>
|
||||||
|
<component name="RunDashboard">
|
||||||
|
<option name="ruleStates">
|
||||||
|
<list>
|
||||||
|
<RuleState>
|
||||||
|
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
||||||
|
</RuleState>
|
||||||
|
<RuleState>
|
||||||
|
<option name="name" value="StatusDashboardGroupingRule" />
|
||||||
|
</RuleState>
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
<component name="RunManager">
|
<component name="RunManager">
|
||||||
<configuration name="main" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="HW7" TARGET_NAME="main" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="HW7" RUN_TARGET_NAME="main">
|
<configuration name="main" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="HW7" TARGET_NAME="main" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="HW7" RUN_TARGET_NAME="main">
|
||||||
<method v="2">
|
<method v="2">
|
||||||
|
|||||||
@@ -6,5 +6,8 @@ find_package(MPI REQUIRED)
|
|||||||
add_definitions(-DOMPI_SKIP_MPICXX)
|
add_definitions(-DOMPI_SKIP_MPICXX)
|
||||||
set(CMAKE_CXX_STANDARD 11)
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
|
||||||
|
|
||||||
add_executable(main main.cpp)
|
add_executable(main main.cpp)
|
||||||
target_link_libraries(main PRIVATE MPI::MPI_C)
|
target_link_libraries(main PRIVATE MPI::MPI_C)
|
||||||
|
|
||||||
|
target_compile_options(main PRIVATE -Wall -Wextra -pedantic -Wl,--stack,10000000 -O3)
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
|||||||
set(CMAKE_C_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc")
|
set(CMAKE_C_COMPILER "/Library/Developer/CommandLineTools/usr/bin/cc")
|
||||||
set(CMAKE_C_COMPILER_ARG1 "")
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
set(CMAKE_C_COMPILER_ID "AppleClang")
|
set(CMAKE_C_COMPILER_ID "AppleClang")
|
||||||
set(CMAKE_C_COMPILER_VERSION "11.0.0.11000033")
|
set(CMAKE_C_COMPILER_VERSION "11.0.0.11000033")
|
||||||
@@ -17,11 +17,11 @@ set(CMAKE_C_SIMULATE_VERSION "")
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar")
|
set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar")
|
||||||
set(CMAKE_C_COMPILER_AR "")
|
set(CMAKE_C_COMPILER_AR "")
|
||||||
set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib")
|
set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib")
|
||||||
set(CMAKE_C_COMPILER_RANLIB "")
|
set(CMAKE_C_COMPILER_RANLIB "")
|
||||||
set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld")
|
set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
|
||||||
set(CMAKE_MT "")
|
set(CMAKE_MT "")
|
||||||
set(CMAKE_COMPILER_IS_GNUCC )
|
set(CMAKE_COMPILER_IS_GNUCC )
|
||||||
set(CMAKE_C_COMPILER_LOADED 1)
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
@@ -70,7 +70,7 @@ endif()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include")
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include")
|
||||||
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
|
||||||
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib")
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib")
|
||||||
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks")
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks")
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
set(CMAKE_CXX_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++")
|
set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++")
|
||||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
set(CMAKE_CXX_COMPILER_ID "AppleClang")
|
set(CMAKE_CXX_COMPILER_ID "AppleClang")
|
||||||
set(CMAKE_CXX_COMPILER_VERSION "11.0.0.11000033")
|
set(CMAKE_CXX_COMPILER_VERSION "11.0.0.11000033")
|
||||||
@@ -19,11 +19,11 @@ set(CMAKE_CXX_SIMULATE_VERSION "")
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar")
|
set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar")
|
||||||
set(CMAKE_CXX_COMPILER_AR "")
|
set(CMAKE_CXX_COMPILER_AR "")
|
||||||
set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib")
|
set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib")
|
||||||
set(CMAKE_CXX_COMPILER_RANLIB "")
|
set(CMAKE_CXX_COMPILER_RANLIB "")
|
||||||
set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld")
|
set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
|
||||||
set(CMAKE_MT "")
|
set(CMAKE_MT "")
|
||||||
set(CMAKE_COMPILER_IS_GNUCXX )
|
set(CMAKE_COMPILER_IS_GNUCXX )
|
||||||
set(CMAKE_CXX_COMPILER_LOADED 1)
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
@@ -73,7 +73,7 @@ endif()
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include")
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include")
|
||||||
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++")
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++")
|
||||||
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib")
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib")
|
||||||
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks")
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks")
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
||||||
|
|
||||||
# Relative path conversion top directories.
|
# Relative path conversion top directories.
|
||||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7")
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7")
|
||||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug")
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug")
|
||||||
|
|
||||||
# Force unix paths in dependencies.
|
# Force unix paths in dependencies.
|
||||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
The system is: Darwin - 19.3.0 - x86_64
|
The system is: Darwin - 19.3.0 - x86_64
|
||||||
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||||
Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
|
Compiler: /Library/Developer/CommandLineTools/usr/bin/cc
|
||||||
Build flags:
|
Build flags:
|
||||||
Id flags:
|
Id flags:
|
||||||
|
|
||||||
@@ -10,10 +10,10 @@ The output was:
|
|||||||
|
|
||||||
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||||
|
|
||||||
The C compiler identification is AppleClang, found in "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.out"
|
The C compiler identification is AppleClang, found in "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.out"
|
||||||
|
|
||||||
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||||
Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
|
Compiler: /Library/Developer/CommandLineTools/usr/bin/c++
|
||||||
Build flags:
|
Build flags:
|
||||||
Id flags:
|
Id flags:
|
||||||
|
|
||||||
@@ -23,264 +23,264 @@ The output was:
|
|||||||
|
|
||||||
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
|
||||||
|
|
||||||
The CXX compiler identification is AppleClang, found in "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.out"
|
The CXX compiler identification is AppleClang, found in "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.out"
|
||||||
|
|
||||||
Determining if the C compiler works passed with the following output:
|
Determining if the C compiler works passed with the following output:
|
||||||
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/usr/bin/make cmTC_539bd/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_539bd.dir/build.make CMakeFiles/cmTC_539bd.dir/build
|
Run Build Command(s):/usr/bin/make cmTC_45f1b/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_45f1b.dir/build.make CMakeFiles/cmTC_45f1b.dir/build
|
||||||
Building C object CMakeFiles/cmTC_539bd.dir/testCCompiler.c.o
|
Building C object CMakeFiles/cmTC_45f1b.dir/testCCompiler.c.o
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_539bd.dir/testCCompiler.c.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/testCCompiler.c
|
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_45f1b.dir/testCCompiler.c.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/testCCompiler.c
|
||||||
Linking C executable cmTC_539bd
|
Linking C executable cmTC_45f1b
|
||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_539bd.dir/link.txt --verbose=1
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_45f1b.dir/link.txt --verbose=1
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_539bd.dir/testCCompiler.c.o -o cmTC_539bd
|
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_45f1b.dir/testCCompiler.c.o -o cmTC_45f1b
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Detecting C compiler ABI info compiled with the following output:
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/usr/bin/make cmTC_449ce/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_449ce.dir/build.make CMakeFiles/cmTC_449ce.dir/build
|
Run Build Command(s):/usr/bin/make cmTC_d2d54/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_d2d54.dir/build.make CMakeFiles/cmTC_d2d54.dir/build
|
||||||
Building C object CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o
|
Building C object CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
|
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
|
||||||
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
||||||
Target: x86_64-apple-darwin19.3.0
|
Target: x86_64-apple-darwin19.3.0
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
||||||
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
||||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.gcno -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
|
"/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
|
||||||
clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0
|
clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0
|
||||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/local/include"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
|
||||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/Library/Frameworks"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"
|
||||||
#include "..." search starts here:
|
#include "..." search starts here:
|
||||||
#include <...> search starts here:
|
#include <...> search starts here:
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include
|
/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
|
/Library/Developer/CommandLineTools/usr/include
|
||||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
|
||||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
|
||||||
End of search list.
|
End of search list.
|
||||||
Linking C executable cmTC_449ce
|
Linking C executable cmTC_d2d54
|
||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_449ce.dir/link.txt --verbose=1
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d2d54.dir/link.txt --verbose=1
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o -o cmTC_449ce
|
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o -o cmTC_d2d54
|
||||||
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
||||||
Target: x86_64-apple-darwin19.3.0
|
Target: x86_64-apple-darwin19.3.0
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
||||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -o cmTC_449ce -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
|
"/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_d2d54 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
|
||||||
@(#)PROGRAM:ld PROJECT:ld64-530
|
@(#)PROGRAM:ld PROJECT:ld64-530
|
||||||
BUILD 18:57:17 Dec 13 2019
|
BUILD 18:57:17 Dec 13 2019
|
||||||
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
|
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
|
||||||
Library search paths:
|
Library search paths:
|
||||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib
|
||||||
Framework search paths:
|
Framework search paths:
|
||||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Parsed C implicit include dir info from above output: rv=done
|
Parsed C implicit include dir info from above output: rv=done
|
||||||
found start of include info
|
found start of include info
|
||||||
found start of implicit include info
|
found start of implicit include info
|
||||||
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include]
|
add: [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
|
||||||
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
|
add: [/Library/Developer/CommandLineTools/usr/include]
|
||||||
add: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include]
|
add: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
end of search list found
|
end of search list found
|
||||||
collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include]
|
collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
|
||||||
collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
|
collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include]
|
||||||
collapse include dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include]
|
collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
implicit include dirs: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include]
|
implicit include dirs: [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
|
|
||||||
|
|
||||||
Parsed C implicit link information from above output:
|
Parsed C implicit link information from above output:
|
||||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
ignore line: [Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp]
|
ignore line: [Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [Run Build Command(s):/usr/bin/make cmTC_449ce/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_449ce.dir/build.make CMakeFiles/cmTC_449ce.dir/build]
|
ignore line: [Run Build Command(s):/usr/bin/make cmTC_d2d54/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_d2d54.dir/build.make CMakeFiles/cmTC_d2d54.dir/build]
|
||||||
ignore line: [Building C object CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o]
|
ignore line: [Building C object CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o]
|
||||||
ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
|
ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
|
||||||
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
||||||
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
|
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
||||||
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
|
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
|
||||||
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.gcno -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
|
ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
|
||||||
ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0]
|
ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/local/include"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"]
|
||||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/Library/Frameworks"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"]
|
||||||
ignore line: [#include "..." search starts here:]
|
ignore line: [#include "..." search starts here:]
|
||||||
ignore line: [#include <...> search starts here:]
|
ignore line: [#include <...> search starts here:]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include]
|
ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
|
ignore line: [ /Library/Developer/CommandLineTools/usr/include]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include]
|
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
|
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
|
||||||
ignore line: [End of search list.]
|
ignore line: [End of search list.]
|
||||||
ignore line: [Linking C executable cmTC_449ce]
|
ignore line: [Linking C executable cmTC_d2d54]
|
||||||
ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_449ce.dir/link.txt --verbose=1]
|
ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d2d54.dir/link.txt --verbose=1]
|
||||||
ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o -o cmTC_449ce ]
|
ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o -o cmTC_d2d54 ]
|
||||||
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
||||||
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
|
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
||||||
link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -o cmTC_449ce -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_d2d54 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
|
arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
|
||||||
arg [-demangle] ==> ignore
|
arg [-demangle] ==> ignore
|
||||||
arg [-lto_library] ==> ignore, skip following value
|
arg [-lto_library] ==> ignore, skip following value
|
||||||
arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib] ==> skip value of -lto_library
|
arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library
|
||||||
arg [-dynamic] ==> ignore
|
arg [-dynamic] ==> ignore
|
||||||
arg [-arch] ==> ignore
|
arg [-arch] ==> ignore
|
||||||
arg [x86_64] ==> ignore
|
arg [x86_64] ==> ignore
|
||||||
arg [-macosx_version_min] ==> ignore
|
arg [-macosx_version_min] ==> ignore
|
||||||
arg [10.15.0] ==> ignore
|
arg [10.15.0] ==> ignore
|
||||||
arg [-syslibroot] ==> ignore
|
arg [-syslibroot] ==> ignore
|
||||||
arg [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk] ==> ignore
|
arg [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk] ==> ignore
|
||||||
arg [-o] ==> ignore
|
arg [-o] ==> ignore
|
||||||
arg [cmTC_449ce] ==> ignore
|
arg [cmTC_d2d54] ==> ignore
|
||||||
arg [-search_paths_first] ==> ignore
|
arg [-search_paths_first] ==> ignore
|
||||||
arg [-headerpad_max_install_names] ==> ignore
|
arg [-headerpad_max_install_names] ==> ignore
|
||||||
arg [-v] ==> ignore
|
arg [-v] ==> ignore
|
||||||
arg [CMakeFiles/cmTC_449ce.dir/CMakeCCompilerABI.c.o] ==> ignore
|
arg [CMakeFiles/cmTC_d2d54.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||||
arg [-lSystem] ==> lib [System]
|
arg [-lSystem] ==> lib [System]
|
||||||
arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
arg [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
Library search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib]
|
Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
|
||||||
Framework search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/]
|
Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/]
|
||||||
remove lib [System]
|
remove lib [System]
|
||||||
remove lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
collapse library dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib]
|
collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
|
||||||
collapse framework dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
|
collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
|
||||||
implicit libs: []
|
implicit libs: []
|
||||||
implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib]
|
implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
|
||||||
implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
|
implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
|
||||||
|
|
||||||
|
|
||||||
Determining if the CXX compiler works passed with the following output:
|
Determining if the CXX compiler works passed with the following output:
|
||||||
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/usr/bin/make cmTC_e0997/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e0997.dir/build.make CMakeFiles/cmTC_e0997.dir/build
|
Run Build Command(s):/usr/bin/make cmTC_fa7f9/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_fa7f9.dir/build.make CMakeFiles/cmTC_fa7f9.dir/build
|
||||||
Building CXX object CMakeFiles/cmTC_e0997.dir/testCXXCompiler.cxx.o
|
Building CXX object CMakeFiles/cmTC_fa7f9.dir/testCXXCompiler.cxx.o
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_e0997.dir/testCXXCompiler.cxx.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
|
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_fa7f9.dir/testCXXCompiler.cxx.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
|
||||||
Linking CXX executable cmTC_e0997
|
Linking CXX executable cmTC_fa7f9
|
||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e0997.dir/link.txt --verbose=1
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fa7f9.dir/link.txt --verbose=1
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_e0997.dir/testCXXCompiler.cxx.o -o cmTC_e0997
|
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_fa7f9.dir/testCXXCompiler.cxx.o -o cmTC_fa7f9
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Detecting CXX compiler ABI info compiled with the following output:
|
Detecting CXX compiler ABI info compiled with the following output:
|
||||||
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/usr/bin/make cmTC_103ad/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_103ad.dir/build.make CMakeFiles/cmTC_103ad.dir/build
|
Run Build Command(s):/usr/bin/make cmTC_55967/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_55967.dir/build.make CMakeFiles/cmTC_55967.dir/build
|
||||||
Building CXX object CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o
|
Building CXX object CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
|
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
|
||||||
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
||||||
Target: x86_64-apple-darwin19.3.0
|
Target: x86_64-apple-darwin19.3.0
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
||||||
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
||||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
|
"/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
|
||||||
clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0
|
clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0
|
||||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"
|
||||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/local/include"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
|
||||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/Library/Frameworks"
|
ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"
|
||||||
#include "..." search starts here:
|
#include "..." search starts here:
|
||||||
#include <...> search starts here:
|
#include <...> search starts here:
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1
|
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include
|
/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
|
/Library/Developer/CommandLineTools/usr/include
|
||||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
|
||||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
|
||||||
End of search list.
|
End of search list.
|
||||||
Linking CXX executable cmTC_103ad
|
Linking CXX executable cmTC_55967
|
||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_103ad.dir/link.txt --verbose=1
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_55967.dir/link.txt --verbose=1
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_103ad
|
/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_55967
|
||||||
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
Apple clang version 11.0.0 (clang-1100.0.33.17)
|
||||||
Target: x86_64-apple-darwin19.3.0
|
Target: x86_64-apple-darwin19.3.0
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
|
||||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -o cmTC_103ad -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
|
"/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_55967 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
|
||||||
@(#)PROGRAM:ld PROJECT:ld64-530
|
@(#)PROGRAM:ld PROJECT:ld64-530
|
||||||
BUILD 18:57:17 Dec 13 2019
|
BUILD 18:57:17 Dec 13 2019
|
||||||
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
|
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
|
||||||
Library search paths:
|
Library search paths:
|
||||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib
|
||||||
Framework search paths:
|
Framework search paths:
|
||||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/
|
/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Parsed CXX implicit include dir info from above output: rv=done
|
Parsed CXX implicit include dir info from above output: rv=done
|
||||||
found start of include info
|
found start of include info
|
||||||
found start of implicit include info
|
found start of implicit include info
|
||||||
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1]
|
add: [/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1]
|
||||||
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include]
|
add: [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
|
||||||
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
|
add: [/Library/Developer/CommandLineTools/usr/include]
|
||||||
add: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include]
|
add: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
end of search list found
|
end of search list found
|
||||||
collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1]
|
collapse include dir [/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1] ==> [/Library/Developer/CommandLineTools/usr/include/c++/v1]
|
||||||
collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include]
|
collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
|
||||||
collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
|
collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include]
|
||||||
collapse include dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include]
|
collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
implicit include dirs: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include]
|
implicit include dirs: [/Library/Developer/CommandLineTools/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
|
|
||||||
|
|
||||||
Parsed CXX implicit link information from above output:
|
Parsed CXX implicit link information from above output:
|
||||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
ignore line: [Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp]
|
ignore line: [Change Dir: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [Run Build Command(s):/usr/bin/make cmTC_103ad/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_103ad.dir/build.make CMakeFiles/cmTC_103ad.dir/build]
|
ignore line: [Run Build Command(s):/usr/bin/make cmTC_55967/fast && /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_55967.dir/build.make CMakeFiles/cmTC_55967.dir/build]
|
||||||
ignore line: [Building CXX object CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o]
|
ignore line: [Building CXX object CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o]
|
||||||
ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
|
ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
|
||||||
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
||||||
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
|
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
||||||
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
|
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
|
||||||
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
|
ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 530 -v -coverage-notes-file /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
|
||||||
ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0]
|
ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.17) default target x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"]
|
||||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/local/include"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"]
|
||||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/Library/Frameworks"]
|
ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"]
|
||||||
ignore line: [#include "..." search starts here:]
|
ignore line: [#include "..." search starts here:]
|
||||||
ignore line: [#include <...> search starts here:]
|
ignore line: [#include <...> search starts here:]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1]
|
ignore line: [ /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include]
|
ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
|
ignore line: [ /Library/Developer/CommandLineTools/usr/include]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include]
|
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
|
||||||
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
|
ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
|
||||||
ignore line: [End of search list.]
|
ignore line: [End of search list.]
|
||||||
ignore line: [Linking CXX executable cmTC_103ad]
|
ignore line: [Linking CXX executable cmTC_55967]
|
||||||
ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_103ad.dir/link.txt --verbose=1]
|
ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_55967.dir/link.txt --verbose=1]
|
||||||
ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_103ad ]
|
ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_55967 ]
|
||||||
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.17)]
|
||||||
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
ignore line: [Target: x86_64-apple-darwin19.3.0]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
|
ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
|
||||||
link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -o cmTC_103ad -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_55967 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
|
arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
|
||||||
arg [-demangle] ==> ignore
|
arg [-demangle] ==> ignore
|
||||||
arg [-lto_library] ==> ignore, skip following value
|
arg [-lto_library] ==> ignore, skip following value
|
||||||
arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib] ==> skip value of -lto_library
|
arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library
|
||||||
arg [-dynamic] ==> ignore
|
arg [-dynamic] ==> ignore
|
||||||
arg [-arch] ==> ignore
|
arg [-arch] ==> ignore
|
||||||
arg [x86_64] ==> ignore
|
arg [x86_64] ==> ignore
|
||||||
arg [-macosx_version_min] ==> ignore
|
arg [-macosx_version_min] ==> ignore
|
||||||
arg [10.15.0] ==> ignore
|
arg [10.15.0] ==> ignore
|
||||||
arg [-syslibroot] ==> ignore
|
arg [-syslibroot] ==> ignore
|
||||||
arg [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk] ==> ignore
|
arg [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk] ==> ignore
|
||||||
arg [-o] ==> ignore
|
arg [-o] ==> ignore
|
||||||
arg [cmTC_103ad] ==> ignore
|
arg [cmTC_55967] ==> ignore
|
||||||
arg [-search_paths_first] ==> ignore
|
arg [-search_paths_first] ==> ignore
|
||||||
arg [-headerpad_max_install_names] ==> ignore
|
arg [-headerpad_max_install_names] ==> ignore
|
||||||
arg [-v] ==> ignore
|
arg [-v] ==> ignore
|
||||||
arg [CMakeFiles/cmTC_103ad.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
arg [CMakeFiles/cmTC_55967.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
||||||
arg [-lc++] ==> lib [c++]
|
arg [-lc++] ==> lib [c++]
|
||||||
arg [-lSystem] ==> lib [System]
|
arg [-lSystem] ==> lib [System]
|
||||||
arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
arg [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
Library search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib]
|
Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
|
||||||
Framework search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/]
|
Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/]
|
||||||
remove lib [System]
|
remove lib [System]
|
||||||
remove lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
|
||||||
collapse library dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib]
|
collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
|
||||||
collapse framework dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
|
collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
|
||||||
implicit libs: [c++]
|
implicit libs: [c++]
|
||||||
implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib]
|
implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
|
||||||
implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
|
implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -7,97 +7,32 @@ set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
|||||||
# The top level Makefile was generated from the following files:
|
# The top level Makefile was generated from the following files:
|
||||||
set(CMAKE_MAKEFILE_DEPENDS
|
set(CMAKE_MAKEFILE_DEPENDS
|
||||||
"CMakeCache.txt"
|
"CMakeCache.txt"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompiler.cmake.in"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCInformation.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCInformation.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompiler.cmake.in"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXInformation.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXInformation.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCommonLanguageInclude.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCompilerIdDetection.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeDetermineCCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeDetermineCXXCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeDetermineCompileFeatures.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeDetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeDetermineCompilerABI.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeDetermineCompilerId.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeDetermineSystem.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeFindBinUtils.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeFindCodeBlocks.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeFindCodeBlocks.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeGenericSystem.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeGenericSystem.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeInitializeConfigs.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeInitializeConfigs.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeLanguageInformation.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeLanguageInformation.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeParseImplicitLinkInfo.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeSystem.cmake.in"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeSystemSpecificInformation.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeSystemSpecificInitialize.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeTestCCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeTestCXXCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeTestCompilerCommon.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeUnixFindMake.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/AppleClang-C.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/AppleClang-C.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/AppleClang-CXX.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/AppleClang-CXX.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Clang.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Clang.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/GNU.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/GNU.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/TI-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/FindMPI.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/FindMPI.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/FindMPI/test_mpi.c"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/FindMPI/test_mpi.c"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/FindPackageHandleStandardArgs.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/FindPackageMessage.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/FindPackageMessage.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Internal/CMakeCheckCompilerFlag.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Internal/CMakeCheckCompilerFlag.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Internal/FeatureTesting.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-AppleClang-C.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-AppleClang-C.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-AppleClang-CXX.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-AppleClang-CXX.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang-C.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang-C.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang-CXX.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang-CXX.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Darwin-Determine-CXX.cmake"
|
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Darwin-Initialize.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Darwin-Initialize.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Darwin.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Darwin.cmake"
|
||||||
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/UnixPaths.cmake"
|
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/UnixPaths.cmake"
|
||||||
@@ -117,12 +52,6 @@ set(CMAKE_MAKEFILE_OUTPUTS
|
|||||||
|
|
||||||
# Byproducts of CMake generate step:
|
# Byproducts of CMake generate step:
|
||||||
set(CMAKE_MAKEFILE_PRODUCTS
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
"CMakeFiles/3.15.3/CMakeSystem.cmake"
|
|
||||||
"CMakeFiles/3.15.3/CMakeCCompiler.cmake"
|
|
||||||
"CMakeFiles/3.15.3/CMakeCXXCompiler.cmake"
|
|
||||||
"CMakeFiles/3.15.3/CMakeCCompiler.cmake"
|
|
||||||
"CMakeFiles/3.15.3/CMakeCXXCompiler.cmake"
|
|
||||||
"CMakeFiles/FindMPI/test_mpi.cpp"
|
|
||||||
"CMakeFiles/FindMPI/test_mpi.cpp"
|
"CMakeFiles/FindMPI/test_mpi.cpp"
|
||||||
"CMakeFiles/FindMPI/test_mpi.cpp"
|
"CMakeFiles/FindMPI/test_mpi.cpp"
|
||||||
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
|||||||
@@ -44,10 +44,10 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
|
|||||||
EQUALS = =
|
EQUALS = =
|
||||||
|
|
||||||
# The top-level source directory on which CMake was run.
|
# The top-level source directory on which CMake was run.
|
||||||
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7
|
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7
|
||||||
|
|
||||||
# The top-level build directory on which CMake was run.
|
# The top-level build directory on which CMake was run.
|
||||||
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug
|
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
# Directory level rules for the build root directory
|
# Directory level rules for the build root directory
|
||||||
@@ -74,14 +74,14 @@ preinstall:
|
|||||||
CMakeFiles/main.dir/all:
|
CMakeFiles/main.dir/all:
|
||||||
$(MAKE) -f CMakeFiles/main.dir/build.make CMakeFiles/main.dir/depend
|
$(MAKE) -f CMakeFiles/main.dir/build.make CMakeFiles/main.dir/depend
|
||||||
$(MAKE) -f CMakeFiles/main.dir/build.make CMakeFiles/main.dir/build
|
$(MAKE) -f CMakeFiles/main.dir/build.make CMakeFiles/main.dir/build
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles --progress-num=1,2 "Built target main"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles --progress-num=1,2 "Built target main"
|
||||||
.PHONY : CMakeFiles/main.dir/all
|
.PHONY : CMakeFiles/main.dir/all
|
||||||
|
|
||||||
# Build rule for subdir invocation for target.
|
# Build rule for subdir invocation for target.
|
||||||
CMakeFiles/main.dir/rule: cmake_check_build_system
|
CMakeFiles/main.dir/rule: cmake_check_build_system
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles 2
|
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles 2
|
||||||
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/main.dir/all
|
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/main.dir/all
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles 0
|
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles 0
|
||||||
.PHONY : CMakeFiles/main.dir/rule
|
.PHONY : CMakeFiles/main.dir/rule
|
||||||
|
|
||||||
# Convenience name for target.
|
# Convenience name for target.
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/edit_cache.dir
|
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/edit_cache.dir
|
||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/main.dir
|
/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/main.dir
|
||||||
|
|||||||
@@ -1,21 +1,4 @@
|
|||||||
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7
|
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7
|
||||||
-- The C compiler identification is AppleClang 11.0.0.11000033
|
|
||||||
-- The CXX compiler identification is AppleClang 11.0.0.11000033
|
|
||||||
-- 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
|
|
||||||
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
|
|
||||||
-- Check for working CXX compiler: /Applications/Xcode.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 MPI_C: /usr/local/Cellar/open-mpi/4.0.3/lib/libmpi.dylib (found version "3.1")
|
|
||||||
-- Found MPI_CXX: /usr/local/Cellar/open-mpi/4.0.3/lib/libmpi.dylib (found version "3.1")
|
|
||||||
-- Found MPI: TRUE (found version "3.1")
|
|
||||||
-- Configuring done
|
-- Configuring done
|
||||||
-- Generating done
|
-- Generating done
|
||||||
-- Build files have been written to: /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug
|
-- Build files have been written to: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug
|
||||||
|
|||||||
@@ -1,36 +0,0 @@
|
|||||||
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
|
|
||||||
|
|
||||||
#IncludeRegexScan: ^.*$
|
|
||||||
|
|
||||||
#IncludeRegexComplain: ^$
|
|
||||||
|
|
||||||
#IncludeRegexTransform:
|
|
||||||
|
|
||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/main.cpp
|
|
||||||
iostream
|
|
||||||
-
|
|
||||||
mpi.h
|
|
||||||
-
|
|
||||||
stdlib.h
|
|
||||||
-
|
|
||||||
unistd.h
|
|
||||||
-
|
|
||||||
time.h
|
|
||||||
-
|
|
||||||
queue
|
|
||||||
-
|
|
||||||
|
|
||||||
/usr/local/Cellar/open-mpi/4.0.3/include/mpi.h
|
|
||||||
stddef.h
|
|
||||||
-
|
|
||||||
mpi_portable_platform.h
|
|
||||||
/usr/local/Cellar/open-mpi/4.0.3/include/mpi_portable_platform.h
|
|
||||||
openmpi/ompi/mpi/cxx/mpicxx.h
|
|
||||||
/usr/local/Cellar/open-mpi/4.0.3/include/openmpi/ompi/mpi/cxx/mpicxx.h
|
|
||||||
|
|
||||||
/usr/local/Cellar/open-mpi/4.0.3/include/mpi_portable_platform.h
|
|
||||||
omp.h
|
|
||||||
/usr/local/Cellar/open-mpi/4.0.3/include/omp.h
|
|
||||||
omp.h
|
|
||||||
/usr/local/Cellar/open-mpi/4.0.3/include/omp.h
|
|
||||||
|
|
||||||
@@ -4,7 +4,7 @@ set(CMAKE_DEPENDS_LANGUAGES
|
|||||||
)
|
)
|
||||||
# The set of files for implicit dependencies of each language:
|
# The set of files for implicit dependencies of each language:
|
||||||
set(CMAKE_DEPENDS_CHECK_CXX
|
set(CMAKE_DEPENDS_CHECK_CXX
|
||||||
"/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/main.cpp" "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/main.dir/main.cpp.o"
|
"/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/main.cpp" "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/main.dir/main.cpp.o"
|
||||||
)
|
)
|
||||||
set(CMAKE_CXX_COMPILER_ID "AppleClang")
|
set(CMAKE_CXX_COMPILER_ID "AppleClang")
|
||||||
|
|
||||||
@@ -15,7 +15,7 @@ set(CMAKE_TARGET_DEFINITIONS_CXX
|
|||||||
|
|
||||||
# The include file search paths:
|
# The include file search paths:
|
||||||
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
||||||
"/usr/local/Cellar/open-mpi/4.0.3/include"
|
"/usr/local/Cellar/open-mpi/4.0.2/include"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Targets to which this target links.
|
# Targets to which this target links.
|
||||||
|
|||||||
@@ -43,10 +43,10 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
|
|||||||
EQUALS = =
|
EQUALS = =
|
||||||
|
|
||||||
# The top-level source directory on which CMake was run.
|
# The top-level source directory on which CMake was run.
|
||||||
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7
|
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7
|
||||||
|
|
||||||
# The top-level build directory on which CMake was run.
|
# The top-level build directory on which CMake was run.
|
||||||
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug
|
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug
|
||||||
|
|
||||||
# Include any dependencies generated for this target.
|
# Include any dependencies generated for this target.
|
||||||
include CMakeFiles/main.dir/depend.make
|
include CMakeFiles/main.dir/depend.make
|
||||||
@@ -59,16 +59,16 @@ include CMakeFiles/main.dir/flags.make
|
|||||||
|
|
||||||
CMakeFiles/main.dir/main.cpp.o: CMakeFiles/main.dir/flags.make
|
CMakeFiles/main.dir/main.cpp.o: CMakeFiles/main.dir/flags.make
|
||||||
CMakeFiles/main.dir/main.cpp.o: ../main.cpp
|
CMakeFiles/main.dir/main.cpp.o: ../main.cpp
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/main.dir/main.cpp.o"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/main.dir/main.cpp.o"
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/main.dir/main.cpp.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/main.cpp
|
/Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/main.dir/main.cpp.o -c /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/main.cpp
|
||||||
|
|
||||||
CMakeFiles/main.dir/main.cpp.i: cmake_force
|
CMakeFiles/main.dir/main.cpp.i: cmake_force
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/main.dir/main.cpp.i"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/main.dir/main.cpp.i"
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/main.cpp > CMakeFiles/main.dir/main.cpp.i
|
/Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/main.cpp > CMakeFiles/main.dir/main.cpp.i
|
||||||
|
|
||||||
CMakeFiles/main.dir/main.cpp.s: cmake_force
|
CMakeFiles/main.dir/main.cpp.s: cmake_force
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/main.dir/main.cpp.s"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/main.dir/main.cpp.s"
|
||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/main.cpp -o CMakeFiles/main.dir/main.cpp.s
|
/Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/main.cpp -o CMakeFiles/main.dir/main.cpp.s
|
||||||
|
|
||||||
# Object files for target main
|
# Object files for target main
|
||||||
main_OBJECTS = \
|
main_OBJECTS = \
|
||||||
@@ -79,9 +79,9 @@ main_EXTERNAL_OBJECTS =
|
|||||||
|
|
||||||
main: CMakeFiles/main.dir/main.cpp.o
|
main: CMakeFiles/main.dir/main.cpp.o
|
||||||
main: CMakeFiles/main.dir/build.make
|
main: CMakeFiles/main.dir/build.make
|
||||||
main: /usr/local/Cellar/open-mpi/4.0.3/lib/libmpi.dylib
|
main: /usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib
|
||||||
main: CMakeFiles/main.dir/link.txt
|
main: CMakeFiles/main.dir/link.txt
|
||||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable main"
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable main"
|
||||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/main.dir/link.txt --verbose=$(VERBOSE)
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/main.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
# Rule to build all files generated by this target.
|
# Rule to build all files generated by this target.
|
||||||
@@ -94,6 +94,6 @@ CMakeFiles/main.dir/clean:
|
|||||||
.PHONY : CMakeFiles/main.dir/clean
|
.PHONY : CMakeFiles/main.dir/clean
|
||||||
|
|
||||||
CMakeFiles/main.dir/depend:
|
CMakeFiles/main.dir/depend:
|
||||||
cd /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7 /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7 /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/main.dir/DependInfo.cmake --color=$(COLOR)
|
cd /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7 /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7 /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/main.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
.PHONY : CMakeFiles/main.dir/depend
|
.PHONY : CMakeFiles/main.dir/depend
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
# CMAKE generated file: DO NOT EDIT!
|
|
||||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
|
||||||
|
|
||||||
CMakeFiles/main.dir/main.cpp.o
|
|
||||||
/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/main.cpp
|
|
||||||
/usr/local/Cellar/open-mpi/4.0.3/include/mpi.h
|
|
||||||
/usr/local/Cellar/open-mpi/4.0.3/include/mpi_portable_platform.h
|
|
||||||
@@ -1,7 +1,2 @@
|
|||||||
# CMAKE generated file: DO NOT EDIT!
|
# Empty dependencies file for main.
|
||||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
# This may be replaced when dependencies are built.
|
||||||
|
|
||||||
CMakeFiles/main.dir/main.cpp.o: ../main.cpp
|
|
||||||
CMakeFiles/main.dir/main.cpp.o: /usr/local/Cellar/open-mpi/4.0.3/include/mpi.h
|
|
||||||
CMakeFiles/main.dir/main.cpp.o: /usr/local/Cellar/open-mpi/4.0.3/include/mpi_portable_platform.h
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
# CMAKE generated file: DO NOT EDIT!
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
||||||
|
|
||||||
# compile CXX with /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
|
# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++
|
||||||
CXX_FLAGS = -g -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -std=gnu++11
|
CXX_FLAGS = -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wall -Wextra -pedantic -Wl,--stack,10000000 -O3 -std=gnu++11
|
||||||
|
|
||||||
CXX_DEFINES = -DOMPI_SKIP_MPICXX
|
CXX_DEFINES = -DOMPI_SKIP_MPICXX
|
||||||
|
|
||||||
CXX_INCLUDES = -isystem /usr/local/Cellar/open-mpi/4.0.3/include
|
CXX_INCLUDES = -isystem /usr/local/Cellar/open-mpi/4.0.2/include
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -g -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/Cellar/libevent/2.1.11_1/lib CMakeFiles/main.dir/main.cpp.o -o main /usr/local/Cellar/open-mpi/4.0.3/lib/libmpi.dylib
|
/Library/Developer/CommandLineTools/usr/bin/c++ -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/Cellar/libevent/2.1.11_1/lib CMakeFiles/main.dir/main.cpp.o -o main /usr/local/Cellar/open-mpi/4.0.2/lib/libmpi.dylib
|
||||||
|
|||||||
Binary file not shown.
@@ -8,86 +8,86 @@
|
|||||||
<Option virtualFolders="CMake Files\;"/>
|
<Option virtualFolders="CMake Files\;"/>
|
||||||
<Build>
|
<Build>
|
||||||
<Target title="all">
|
<Target title="all">
|
||||||
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug"/>
|
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug"/>
|
||||||
<Option type="4"/>
|
<Option type="4"/>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 all"/>
|
<Build command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 all"/>
|
||||||
<CompileFile command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="rebuild_cache">
|
<Target title="rebuild_cache">
|
||||||
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug"/>
|
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug"/>
|
||||||
<Option type="4"/>
|
<Option type="4"/>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 rebuild_cache"/>
|
<Build command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 rebuild_cache"/>
|
||||||
<CompileFile command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="edit_cache">
|
<Target title="edit_cache">
|
||||||
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug"/>
|
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug"/>
|
||||||
<Option type="4"/>
|
<Option type="4"/>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 edit_cache"/>
|
<Build command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 edit_cache"/>
|
||||||
<CompileFile command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="main">
|
<Target title="main">
|
||||||
<Option output="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/main" prefix_auto="0" extension_auto="0"/>
|
<Option output="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/main" prefix_auto="0" extension_auto="0"/>
|
||||||
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug"/>
|
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug"/>
|
||||||
<Option object_output="./"/>
|
<Option object_output="./"/>
|
||||||
<Option type="1"/>
|
<Option type="1"/>
|
||||||
<Option compiler="gcc"/>
|
<Option compiler="gcc"/>
|
||||||
<Compiler>
|
<Compiler>
|
||||||
<Add option="-DOMPI_SKIP_MPICXX"/>
|
<Add option="-DOMPI_SKIP_MPICXX"/>
|
||||||
<Add directory="/usr/local/Cellar/open-mpi/4.0.3/include"/>
|
<Add directory="/usr/local/Cellar/open-mpi/4.0.2/include"/>
|
||||||
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"/>
|
||||||
<Add directory="/usr/local/include"/>
|
<Add directory="/usr/local/include"/>
|
||||||
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include"/>
|
||||||
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/include"/>
|
||||||
<Add directory="/System/Library/Frameworks"/>
|
<Add directory="/System/Library/Frameworks"/>
|
||||||
<Add directory="/Library/Frameworks"/>
|
<Add directory="/Library/Frameworks"/>
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 main"/>
|
<Build command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 main"/>
|
||||||
<CompileFile command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="main/fast">
|
<Target title="main/fast">
|
||||||
<Option output="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/main" prefix_auto="0" extension_auto="0"/>
|
<Option output="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/main" prefix_auto="0" extension_auto="0"/>
|
||||||
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug"/>
|
<Option working_dir="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug"/>
|
||||||
<Option object_output="./"/>
|
<Option object_output="./"/>
|
||||||
<Option type="1"/>
|
<Option type="1"/>
|
||||||
<Option compiler="gcc"/>
|
<Option compiler="gcc"/>
|
||||||
<Compiler>
|
<Compiler>
|
||||||
<Add option="-DOMPI_SKIP_MPICXX"/>
|
<Add option="-DOMPI_SKIP_MPICXX"/>
|
||||||
<Add directory="/usr/local/Cellar/open-mpi/4.0.3/include"/>
|
<Add directory="/usr/local/Cellar/open-mpi/4.0.2/include"/>
|
||||||
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"/>
|
||||||
<Add directory="/usr/local/include"/>
|
<Add directory="/usr/local/include"/>
|
||||||
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/11.0.0/include"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include"/>
|
||||||
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"/>
|
<Add directory="/Library/Developer/CommandLineTools/usr/include"/>
|
||||||
<Add directory="/System/Library/Frameworks"/>
|
<Add directory="/System/Library/Frameworks"/>
|
||||||
<Add directory="/Library/Frameworks"/>
|
<Add directory="/Library/Frameworks"/>
|
||||||
</Compiler>
|
</Compiler>
|
||||||
<MakeCommands>
|
<MakeCommands>
|
||||||
<Build command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 main/fast"/>
|
<Build command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 main/fast"/>
|
||||||
<CompileFile command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
<CompileFile command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||||
<Clean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<Clean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
<DistClean command="/usr/bin/make -j8 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
<DistClean command="/usr/bin/make -j4 -f "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||||
</MakeCommands>
|
</MakeCommands>
|
||||||
</Target>
|
</Target>
|
||||||
</Build>
|
</Build>
|
||||||
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/main.cpp">
|
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/main.cpp">
|
||||||
<Option target="main"/>
|
<Option target="main"/>
|
||||||
</Unit>
|
</Unit>
|
||||||
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/CMakeLists.txt">
|
<Unit filename="/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/CMakeLists.txt">
|
||||||
<Option virtualFolder="CMake Files\"/>
|
<Option virtualFolder="CMake Files\"/>
|
||||||
</Unit>
|
</Unit>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -48,10 +48,10 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
|
|||||||
EQUALS = =
|
EQUALS = =
|
||||||
|
|
||||||
# The top-level source directory on which CMake was run.
|
# The top-level source directory on which CMake was run.
|
||||||
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7
|
CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7
|
||||||
|
|
||||||
# The top-level build directory on which CMake was run.
|
# The top-level build directory on which CMake was run.
|
||||||
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug
|
CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug
|
||||||
|
|
||||||
#=============================================================================
|
#=============================================================================
|
||||||
# Targets provided globally by CMake.
|
# Targets provided globally by CMake.
|
||||||
@@ -80,9 +80,9 @@ edit_cache/fast: edit_cache
|
|||||||
|
|
||||||
# The main all target
|
# The main all target
|
||||||
all: cmake_check_build_system
|
all: cmake_check_build_system
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles/progress.marks
|
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles/progress.marks
|
||||||
$(MAKE) -f CMakeFiles/Makefile2 all
|
$(MAKE) -f CMakeFiles/Makefile2 all
|
||||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/CMakeFiles 0
|
$(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/CMakeFiles 0
|
||||||
.PHONY : all
|
.PHONY : all
|
||||||
|
|
||||||
# The main clean target
|
# The main clean target
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Install script for directory: /Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7
|
# Install script for directory: /Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7
|
||||||
|
|
||||||
# Set the install prefix
|
# Set the install prefix
|
||||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
@@ -40,5 +40,5 @@ endif()
|
|||||||
|
|
||||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
file(WRITE "/Users/bradybodily/Repositories/CS5500_Parallel_Prog/HW7/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
|
file(WRITE "/Users/bradybodily/Repositories/CS5500_Parallel_Programming/HW7/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
|
||||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
|||||||
75
HW7/main.cpp
75
HW7/main.cpp
@@ -1,26 +1,28 @@
|
|||||||
#include<iostream>
|
#include<iostream>
|
||||||
#include<mpi.h>
|
#include<mpi.h>
|
||||||
#include<stdlib.h>
|
#include<cstdlib>
|
||||||
#include<time.h>
|
#include<ctime>
|
||||||
#include<queue>
|
#include<queue>
|
||||||
|
|
||||||
#define MCW MPI_COMM_WORLD
|
#define MCW MPI_COMM_WORLD
|
||||||
#define GENERIC 0
|
#define GENERIC 0
|
||||||
#define SPECIAL 1
|
#define SPECIAL 1
|
||||||
#define JOB 1
|
#define JOB 1
|
||||||
|
#define ALLSTOP (-1)
|
||||||
#define TOKEN 2
|
#define TOKEN 2
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
int rank, size;
|
int rank, size;
|
||||||
int jobFlag, tokenFlag;
|
int jobFlag = 0;
|
||||||
|
int tokenFlag = 0;
|
||||||
int tasksCreated = 0;
|
int tasksCreated = 0;
|
||||||
int tasksCompleted = 0;
|
int tasksCompleted = 0;
|
||||||
int taskLimit;
|
int taskLimit;
|
||||||
int tokenValue = SPECIAL;
|
int tokenValue = SPECIAL;
|
||||||
int myToken = SPECIAL;
|
int myToken = SPECIAL;
|
||||||
int newTask;
|
int newTask = 0;
|
||||||
bool hasToken = false;
|
bool hasToken = false;
|
||||||
queue<int> myTasks;
|
queue<int> myTasks;
|
||||||
MPI_Status status;
|
MPI_Status status;
|
||||||
@@ -30,40 +32,41 @@ int main(int argc, char **argv) {
|
|||||||
MPI_Comm_rank(MCW, &rank);
|
MPI_Comm_rank(MCW, &rank);
|
||||||
MPI_Comm_size(MCW, &size);
|
MPI_Comm_size(MCW, &size);
|
||||||
|
|
||||||
srand(time(NULL) + rank);
|
srand(static_cast<unsigned int>(time(nullptr) + rank));
|
||||||
taskLimit = rand() % 1025 + 1024; //Set the limit to some number between 1024 and 2048
|
taskLimit = rand() % 1025 + 1024;
|
||||||
|
|
||||||
if (rank == 0) {
|
if (!rank) {
|
||||||
hasToken = true;
|
hasToken = true;
|
||||||
int job = rand() % 3 + 1;
|
int job = rand() % size;
|
||||||
tasksCreated++;
|
tasksCreated++;
|
||||||
MPI_Send(&job, 1, MPI_INT, rand() % 4, JOB, MCW); //Send out the initial job
|
MPI_Send(&job, 1, MPI_INT, rand() % size, JOB, MCW);
|
||||||
}
|
}
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
MPI_Iprobe(MPI_ANY_SOURCE, JOB, MCW, &jobFlag, &status); //Check to see if a job is available
|
MPI_Iprobe(MPI_ANY_SOURCE, JOB, MCW, &jobFlag, &status);
|
||||||
if (jobFlag) {
|
if (jobFlag == 1) {
|
||||||
MPI_Irecv(&newTask, 1, MPI_INT, MPI_ANY_SOURCE, JOB, MCW, &request);
|
MPI_Irecv(&newTask, 1, MPI_INT, MPI_ANY_SOURCE, JOB, MCW, &request);
|
||||||
myTasks.push(newTask);
|
myTasks.push(newTask);
|
||||||
}
|
}
|
||||||
if (newTask == -1) { //If the stop signal is received, send my info to process 0 and break out of the loop
|
if (newTask == ALLSTOP) {
|
||||||
MPI_Send(&tasksCreated, 1, MPI_INT, 0, size - 1, MCW);
|
MPI_Send(&tasksCreated, 1, MPI_INT, 0, size - 1, MCW);
|
||||||
MPI_Send(&tasksCompleted, 1, MPI_INT, 0, size, MCW);
|
MPI_Send(&tasksCompleted, 1, MPI_INT, 0, size, MCW);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (myTasks.size() > 16) { //If my task queue is greater than size 16, send off 2 tasks
|
if (myTasks.size() > 16) {
|
||||||
for (int i = 0; i < 2; i++) {
|
for (int i = 0; i < 2; i++) {
|
||||||
int task = myTasks.front();
|
int task = myTasks.front();
|
||||||
myTasks.pop();
|
myTasks.pop();
|
||||||
int dest = rand() % 4;
|
int dest = rank;
|
||||||
while (dest == rank) { dest = rand() % size; }
|
while (dest == rank) { dest = rand() % size; }
|
||||||
if (dest < rank) { myToken = GENERIC; }
|
if (dest < rank) { myToken = GENERIC; }
|
||||||
MPI_Send(&task, 1, MPI_INT, dest, JOB, MCW);
|
MPI_Send(&task, 1, MPI_INT, dest, JOB, MCW);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!myTasks.empty()) {
|
if (!myTasks.empty()) {
|
||||||
int num = myTasks.front();
|
int num;
|
||||||
myTasks.pop();
|
num = myTasks.front();
|
||||||
|
myTasks.pop();
|
||||||
num ^ 3 - num ^ 4;
|
num ^ 3 - num ^ 4;
|
||||||
tasksCompleted++;
|
tasksCompleted++;
|
||||||
}
|
}
|
||||||
@@ -73,18 +76,19 @@ int main(int argc, char **argv) {
|
|||||||
tasksCreated++;
|
tasksCreated++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (myTasks.empty()) { //Check the token information
|
if (myTasks.empty()) {
|
||||||
if (hasToken) {
|
if (hasToken) {
|
||||||
string tmp = "";
|
string tmp;
|
||||||
if (tokenValue == GENERIC)
|
if (tokenValue == GENERIC)
|
||||||
tmp = "Generic";
|
tmp = "Generic";
|
||||||
else
|
else
|
||||||
tmp = "Special";
|
tmp = "Special";
|
||||||
|
|
||||||
|
|
||||||
cout << "My Rank: " << rank << " My token: " << tmp << endl;
|
cout << "My Rank: " << rank << " My token: " << tmp << endl;
|
||||||
int dest = rank + 1 < size ? rank + 1 : 0;
|
int dest = rank + 1 < size ? rank + 1 : 0;
|
||||||
if (rank == 0) { tokenValue = SPECIAL; }
|
if (!rank)
|
||||||
|
tokenValue = SPECIAL;
|
||||||
MPI_Send(&tokenValue, 1, MPI_INT, dest, TOKEN, MCW);
|
MPI_Send(&tokenValue, 1, MPI_INT, dest, TOKEN, MCW);
|
||||||
hasToken = false;
|
hasToken = false;
|
||||||
myToken = SPECIAL;
|
myToken = SPECIAL;
|
||||||
@@ -95,37 +99,36 @@ int main(int argc, char **argv) {
|
|||||||
else
|
else
|
||||||
src = size - 1;
|
src = size - 1;
|
||||||
MPI_Iprobe(src, TOKEN, MCW, &tokenFlag, &status);
|
MPI_Iprobe(src, TOKEN, MCW, &tokenFlag, &status);
|
||||||
if (tokenFlag) {
|
if (tokenFlag == 1) {
|
||||||
MPI_Irecv(&tokenValue, 1, MPI_INT, src, TOKEN, MCW, &request);
|
MPI_Irecv(&tokenValue, 1, MPI_INT, src, TOKEN, MCW, &request);
|
||||||
hasToken = true;
|
hasToken = true;
|
||||||
if (rank == 0 && tokenValue == SPECIAL) {
|
if (!rank && tokenValue) {
|
||||||
int Stop = -1;
|
int stop = ALLSTOP;
|
||||||
for (int i = 1; i < size; i++) {
|
for (int i = 1; i < size; i++) {
|
||||||
MPI_Send(&Stop, 1, MPI_INT, i, JOB, MCW);
|
MPI_Send(&stop, 1, MPI_INT, i, JOB, MCW);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (myToken == GENERIC) {
|
tokenValue = (myToken == GENERIC) ? GENERIC : SPECIAL;
|
||||||
tokenValue = GENERIC;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Print info after run.
|
//Print info after run.
|
||||||
if (rank == 0) {
|
if (!rank) {
|
||||||
int created;
|
|
||||||
int completed;
|
cout << "Rank 0--Total tasks created: " << tasksCreated << " Total Tasks completed: " << tasksCompleted << endl;
|
||||||
cout << "Rank 0 created " << tasksCreated << " tasks and completed " << tasksCompleted << " tasks" << endl;
|
for (int i = 1; i < size; i++) {
|
||||||
for (int i = 0; i < size; i++) {
|
int created;
|
||||||
MPI_Recv(&created, 1, MPI_INT, i, size - 1, MCW, MPI_STATUS_IGNORE);
|
int completed;
|
||||||
MPI_Recv(&completed, 1, MPI_INT, i, size, MCW, MPI_STATUS_IGNORE);
|
MPI_Recv(&completed, 1, MPI_INT, i, size, MCW, MPI_STATUS_IGNORE);
|
||||||
cout << "Rank " << i << " created " << created << " tasks and completed " << completed << " tasks" << endl;
|
MPI_Recv(&created, 1, MPI_INT, i, size - 1, MCW, MPI_STATUS_IGNORE);
|
||||||
|
cout << "Rank "<<i<<"--Total tasks created: " << created << " Total Tasks completed: " << completed << endl;
|
||||||
tasksCreated += created;
|
tasksCreated += created;
|
||||||
tasksCompleted += completed;
|
tasksCompleted += completed;
|
||||||
}
|
}
|
||||||
cout << "Tasks Created: " << tasksCreated << endl;
|
cout << "Total Tasks Created: " << tasksCreated << endl;
|
||||||
cout << "Tasks Completed: " << tasksCompleted << endl;
|
cout << "Total Tasks Completed: " << tasksCompleted << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
2
MakeJson/.idea/MakeJson.iml
generated
Normal file
2
MakeJson/.idea/MakeJson.iml
generated
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module classpath="CMake" type="CPP_MODULE" version="4" />
|
||||||
54
Parallel_Mandelbrot/.idea/workspace.xml
generated
54
Parallel_Mandelbrot/.idea/workspace.xml
generated
@@ -9,20 +9,60 @@
|
|||||||
</configurations>
|
</configurations>
|
||||||
</component>
|
</component>
|
||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="433d4815-90d2-4f07-b6e7-1be1c938fd77" name="Default Changelist" comment="" />
|
<list default="true" id="433d4815-90d2-4f07-b6e7-1be1c938fd77" name="Default Changelist" comment="">
|
||||||
|
<change afterPath="$PROJECT_DIR$/../HW10/City.h" afterDir="false" />
|
||||||
|
<change afterPath="$PROJECT_DIR$/../HW10/MakePermutationMatrix.cpp" afterDir="false" />
|
||||||
|
<change afterPath="$PROJECT_DIR$/../HW10/MakePermutationMatrix.h" afterDir="false" />
|
||||||
|
<change afterPath="$PROJECT_DIR$/../HW10/ReadFromFile.cpp" afterDir="false" />
|
||||||
|
<change afterPath="$PROJECT_DIR$/../HW10/ReadFromFile.h" afterDir="false" />
|
||||||
|
<change afterPath="$PROJECT_DIR$/../HW10/inputOriginal" afterDir="false" />
|
||||||
|
<change afterPath="$PROJECT_DIR$/../HW7/.idea/codeStyles/codeStyleConfig.xml" afterDir="false" />
|
||||||
|
<change afterPath="$PROJECT_DIR$/../HW7/.idea/inspectionProfiles/Project_Default.xml" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/.idea/workspace.xml" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/CMakeLists.txt" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/CMakeLists.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeCache.txt" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeCache.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/CMakeOutput.log" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/CMakeOutput.log" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/FindMPI/test_mpi_C.bin" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/FindMPI/test_mpi_C.bin" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/FindMPI/test_mpi_CXX.bin" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/FindMPI/test_mpi_CXX.bin" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/Makefile.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/Makefile.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/Makefile2" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/Makefile2" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/TargetDirectories.txt" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/TargetDirectories.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/clion-log.txt" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/clion-log.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/CXX.includecache" beforeDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/DependInfo.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/DependInfo.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/build.make" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/build.make" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/depend.internal" beforeDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/depend.make" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/depend.make" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/flags.make" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/flags.make" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/link.txt" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/link.txt" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/CMakeFiles/main.dir/main.cpp.o" beforeDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/HW7.cbp" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/HW7.cbp" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/Makefile" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/Makefile" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/cmake-build-debug/cmake_install.cmake" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/cmake-build-debug/cmake_install.cmake" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/../HW7/main.cpp" beforeDir="false" afterPath="$PROJECT_DIR$/../HW7/main.cpp" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
|
</list>
|
||||||
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||||
</component>
|
</component>
|
||||||
|
<component name="Git.Settings">
|
||||||
|
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/.." />
|
||||||
|
</component>
|
||||||
<component name="MacroExpansionManager">
|
<component name="MacroExpansionManager">
|
||||||
<option name="directoryName" value="tEvmtquu" />
|
<option name="directoryName" value="tEvmtquu" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectId" id="1Xs1G1e6LWQK7dokdx2n2NRYwiX" />
|
<component name="ProjectId" id="1Xs1G1e6LWQK7dokdx2n2NRYwiX" />
|
||||||
|
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
||||||
<component name="PropertiesComponent">
|
<component name="PropertiesComponent">
|
||||||
<property name="WebServerToolWindowFactoryState" value="false" />
|
<property name="WebServerToolWindowFactoryState" value="false" />
|
||||||
<property name="cf.advertisement.text.overridden" value="true" />
|
<property name="cf.advertisement.text.overridden" value="true" />
|
||||||
|
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
||||||
<property name="node.js.detected.package.eslint" value="true" />
|
<property name="node.js.detected.package.eslint" value="true" />
|
||||||
<property name="node.js.detected.package.tslint" value="true" />
|
<property name="node.js.detected.package.tslint" value="true" />
|
||||||
<property name="node.js.path.for.package.eslint" value="project" />
|
<property name="node.js.path.for.package.eslint" value="project" />
|
||||||
@@ -69,10 +109,22 @@
|
|||||||
<updated>1581819888474</updated>
|
<updated>1581819888474</updated>
|
||||||
<workItem from="1581819892578" duration="3674000" />
|
<workItem from="1581819892578" duration="3674000" />
|
||||||
<workItem from="1582065771176" duration="11561000" />
|
<workItem from="1582065771176" duration="11561000" />
|
||||||
|
<workItem from="1585433500606" duration="599000" />
|
||||||
</task>
|
</task>
|
||||||
<servers />
|
<servers />
|
||||||
</component>
|
</component>
|
||||||
<component name="TypeScriptGeneratedFilesManager">
|
<component name="TypeScriptGeneratedFilesManager">
|
||||||
<option name="version" value="1" />
|
<option name="version" value="1" />
|
||||||
</component>
|
</component>
|
||||||
|
<component name="Vcs.Log.Tabs.Properties">
|
||||||
|
<option name="TAB_STATES">
|
||||||
|
<map>
|
||||||
|
<entry key="MAIN">
|
||||||
|
<value>
|
||||||
|
<State />
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
</project>
|
</project>
|
||||||
Reference in New Issue
Block a user