Last active
August 29, 2015 14:17
-
-
Save sriramkswamy/35cfc234958835d1982c to your computer and use it in GitHub Desktop.
The error output for Trilinos and the error output when tried to run after compiling with homebrew
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Performing C++ SOURCE FILE Test HAVE_TEUCHOS_LAPACKLARND failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec1643959167/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1643959167.dir/build.make CMakeFiles/cmTryCompileExec1643959167.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec1643959167.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_TEUCHOS_LAPACKLARND -o CMakeFiles/cmTryCompileExec1643959167.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec1643959167 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1643959167.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_TEUCHOS_LAPACKLARND -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec1643959167.dir/src.cxx.o -o cmTryCompileExec1643959167 /usr/local/lib/liblapack.a | |
Undefined symbols for architecture x86_64: | |
"_dlarnd_", referenced from: | |
_main in src.cxx.o | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec1643959167] Error 1 | |
make: *** [cmTryCompileExec1643959167/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define DLARND_F77 F77_BLAS_MANGLE(dlarnd,DLARND) | |
extern "C" { double DLARND_F77(const int* idist, int* seed); } | |
int main() | |
{ | |
const int idist = 1; | |
int seed[4] = { 0.0, 0.0, 0.0, 1.0 }; | |
double val = DLARND_F77(&idist, seed); | |
return (val < 0.0 ? 1 : 0); | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_DLARFP failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec2546789913/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec2546789913.dir/build.make CMakeFiles/cmTryCompileExec2546789913.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec2546789913.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_DLARFP -o CMakeFiles/cmTryCompileExec2546789913.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec2546789913 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2546789913.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_DLARFP -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec2546789913.dir/src.cxx.o -o cmTryCompileExec2546789913 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"_dlarfp_", referenced from: | |
_main in src.cxx.o | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec2546789913] Error 1 | |
make: *** [cmTryCompileExec2546789913/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(dlarfp,DLARFP) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_SLARFP failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec471447137/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec471447137.dir/build.make CMakeFiles/cmTryCompileExec471447137.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec471447137.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_SLARFP -o CMakeFiles/cmTryCompileExec471447137.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec471447137 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec471447137.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_SLARFP -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec471447137.dir/src.cxx.o -o cmTryCompileExec471447137 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"_slarfp_", referenced from: | |
_main in src.cxx.o | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec471447137] Error 1 | |
make: *** [cmTryCompileExec471447137/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(slarfp,SLARFP) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_ZLARFP failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec2317625537/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec2317625537.dir/build.make CMakeFiles/cmTryCompileExec2317625537.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec2317625537.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_ZLARFP -o CMakeFiles/cmTryCompileExec2317625537.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec2317625537 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2317625537.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_ZLARFP -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec2317625537.dir/src.cxx.o -o cmTryCompileExec2317625537 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"_zlarfp_", referenced from: | |
_main in src.cxx.o | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec2317625537] Error 1 | |
make: *** [cmTryCompileExec2317625537/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(zlarfp,ZLARFP) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_CLARFP failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec2636335825/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec2636335825.dir/build.make CMakeFiles/cmTryCompileExec2636335825.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec2636335825.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_CLARFP -o CMakeFiles/cmTryCompileExec2636335825.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec2636335825 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2636335825.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_CLARFP -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec2636335825.dir/src.cxx.o -o cmTryCompileExec2636335825 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"_clarfp_", referenced from: | |
_main in src.cxx.o | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec2636335825] Error 1 | |
make: *** [cmTryCompileExec2636335825/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(clarfp,CLARFP) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_DGEQRFP failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec868352601/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec868352601.dir/build.make CMakeFiles/cmTryCompileExec868352601.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec868352601.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_DGEQRFP -o CMakeFiles/cmTryCompileExec868352601.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec868352601 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec868352601.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_DGEQRFP -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec868352601.dir/src.cxx.o -o cmTryCompileExec868352601 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"__gfortran_st_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_st_write_done", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_stop_string", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_string_len_trim", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_character_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_integer_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec868352601] Error 1 | |
make: *** [cmTryCompileExec868352601/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(dgeqrfp,DGEQRFP) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_SGEQRFP failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec1277873294/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1277873294.dir/build.make CMakeFiles/cmTryCompileExec1277873294.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec1277873294.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_SGEQRFP -o CMakeFiles/cmTryCompileExec1277873294.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec1277873294 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1277873294.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_SGEQRFP -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec1277873294.dir/src.cxx.o -o cmTryCompileExec1277873294 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"__gfortran_st_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_st_write_done", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_stop_string", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_string_len_trim", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_character_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_integer_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec1277873294] Error 1 | |
make: *** [cmTryCompileExec1277873294/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(sgeqrfp,SGEQRFP) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_ZGEQRFP failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec1267175229/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1267175229.dir/build.make CMakeFiles/cmTryCompileExec1267175229.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec1267175229.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_ZGEQRFP -o CMakeFiles/cmTryCompileExec1267175229.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec1267175229 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1267175229.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_ZGEQRFP -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec1267175229.dir/src.cxx.o -o cmTryCompileExec1267175229 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"__gfortran_st_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_st_write_done", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_stop_string", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_string_len_trim", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_character_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_integer_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec1267175229] Error 1 | |
make: *** [cmTryCompileExec1267175229/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(zgeqrfp,ZGEQRFP) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_CGEQRFP failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec1662106409/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1662106409.dir/build.make CMakeFiles/cmTryCompileExec1662106409.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec1662106409.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_CGEQRFP -o CMakeFiles/cmTryCompileExec1662106409.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec1662106409 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1662106409.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_CGEQRFP -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec1662106409.dir/src.cxx.o -o cmTryCompileExec1662106409 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"__gfortran_st_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_st_write_done", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_stop_string", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_string_len_trim", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_character_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_integer_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec1662106409] Error 1 | |
make: *** [cmTryCompileExec1662106409/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(cgeqrfp,CGEQRFP) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_DGEQR2P failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec871201502/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec871201502.dir/build.make CMakeFiles/cmTryCompileExec871201502.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec871201502.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_DGEQR2P -o CMakeFiles/cmTryCompileExec871201502.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec871201502 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec871201502.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_DGEQR2P -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec871201502.dir/src.cxx.o -o cmTryCompileExec871201502 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"__gfortran_st_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_st_write_done", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_stop_string", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_string_len_trim", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_character_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_integer_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec871201502] Error 1 | |
make: *** [cmTryCompileExec871201502/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(dgeqr2p,DGEQR2P) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_SGEQR2P failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec3008666838/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec3008666838.dir/build.make CMakeFiles/cmTryCompileExec3008666838.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec3008666838.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_SGEQR2P -o CMakeFiles/cmTryCompileExec3008666838.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec3008666838 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3008666838.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_SGEQR2P -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec3008666838.dir/src.cxx.o -o cmTryCompileExec3008666838 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"__gfortran_st_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_st_write_done", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_stop_string", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_string_len_trim", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_character_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_integer_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec3008666838] Error 1 | |
make: *** [cmTryCompileExec3008666838/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(sgeqr2p,SGEQR2P) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_ZGEQR2P failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec1605084296/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1605084296.dir/build.make CMakeFiles/cmTryCompileExec1605084296.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec1605084296.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_ZGEQR2P -o CMakeFiles/cmTryCompileExec1605084296.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec1605084296 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1605084296.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_ZGEQR2P -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec1605084296.dir/src.cxx.o -o cmTryCompileExec1605084296 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"__gfortran_st_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_st_write_done", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_stop_string", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_string_len_trim", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_character_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_integer_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec1605084296] Error 1 | |
make: *** [cmTryCompileExec1605084296/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(zgeqr2p,ZGEQR2P) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Performing C++ SOURCE FILE Test HAVE_LAPACK_CGEQR2P failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec1219611296/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1219611296.dir/build.make CMakeFiles/cmTryCompileExec1219611296.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building CXX object CMakeFiles/cmTryCompileExec1219611296.dir/src.cxx.o | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_CGEQR2P -o CMakeFiles/cmTryCompileExec1219611296.dir/src.cxx.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/src.cxx | |
Linking CXX executable cmTryCompileExec1219611296 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1219611296.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicxx -DHAVE_LAPACK_CGEQR2P -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec1219611296.dir/src.cxx.o -o cmTryCompileExec1219611296 /usr/local/lib/liblapack.a /usr/local/lib/libblas.a | |
Undefined symbols for architecture x86_64: | |
"__gfortran_st_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_st_write_done", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_stop_string", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_string_len_trim", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_character_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
"__gfortran_transfer_integer_write", referenced from: | |
_xerbla_ in liblapack.a(xerbla.o) | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec1219611296] Error 1 | |
make: *** [cmTryCompileExec1219611296/fast] Error 2 | |
Return value: 1 | |
Source file was: | |
#define F77_BLAS_MANGLE(name,NAME) name ## _ | |
#define ROUTINE_F77 F77_BLAS_MANGLE(cgeqr2p,CGEQR2P) | |
extern "C" { void ROUTINE_F77 (); } | |
int main(int argc, char* argv[]) { | |
if (argc > 1) | |
ROUTINE_F77(); | |
return 0; | |
} | |
Determining if the function _Isfinite exists failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec4121720919/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec4121720919.dir/build.make CMakeFiles/cmTryCompileExec4121720919.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building C object CMakeFiles/cmTryCompileExec4121720919.dir/CheckFunctionExists.c.o | |
/usr/local/opt/open-mpi/bin/mpicc -DCHECK_FUNCTION_EXISTS=_Isfinite -o CMakeFiles/cmTryCompileExec4121720919.dir/CheckFunctionExists.c.o -c /usr/local/Cellar/cmake/3.1.3/share/cmake/Modules/CheckFunctionExists.c | |
Linking C executable cmTryCompileExec4121720919 | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4121720919.dir/link.txt --verbose=1 | |
/usr/local/opt/open-mpi/bin/mpicc -DCHECK_FUNCTION_EXISTS=_Isfinite -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTryCompileExec4121720919.dir/CheckFunctionExists.c.o -o cmTryCompileExec4121720919 | |
Undefined symbols for architecture x86_64: | |
"__Isfinite", referenced from: | |
_main in CheckFunctionExists.c.o | |
ld: symbol(s) not found for architecture x86_64 | |
clang: error: linker command failed with exit code 1 (use -v to see invocation) | |
make[1]: *** [cmTryCompileExec4121720919] Error 1 | |
make: *** [cmTryCompileExec4121720919/fast] Error 2 | |
Determining if the include file ieeefp.h exists failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec1053328704/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1053328704.dir/build.make CMakeFiles/cmTryCompileExec1053328704.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building C object CMakeFiles/cmTryCompileExec1053328704.dir/CheckIncludeFile.c.o | |
/usr/local/opt/open-mpi/bin/mpicc -o CMakeFiles/cmTryCompileExec1053328704.dir/CheckIncludeFile.c.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c | |
In file included from /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1: | |
/usr/local/include/ieeefp.h:7:10: fatal error: 'machine/ieeefp.h' file not found | |
#include <machine/ieeefp.h> | |
^ | |
1 error generated. | |
make[1]: *** [CMakeFiles/cmTryCompileExec1053328704.dir/CheckIncludeFile.c.o] Error 1 | |
make: *** [cmTryCompileExec1053328704/fast] Error 2 | |
Determining if the include file ieeefp.h exists failed with the following output: | |
Change Dir: /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp | |
Run Build Command:"/usr/bin/make" "cmTryCompileExec2544334244/fast" | |
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec2544334244.dir/build.make CMakeFiles/cmTryCompileExec2544334244.dir/build | |
/usr/local/Cellar/cmake/3.1.3/bin/cmake -E cmake_progress_report /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CMakeFiles 1 | |
Building C object CMakeFiles/cmTryCompileExec2544334244.dir/CheckIncludeFile.c.o | |
/usr/local/opt/open-mpi/bin/mpicc -o CMakeFiles/cmTryCompileExec2544334244.dir/CheckIncludeFile.c.o -c /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c | |
In file included from /Users/aerobug/Downloads/trilinos-11.12.1-Source/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c:1: | |
/usr/local/include/ieeefp.h:7:10: fatal error: 'machine/ieeefp.h' file not found | |
#include <machine/ieeefp.h> | |
^ | |
1 error generated. | |
make[1]: *** [CMakeFiles/cmTryCompileExec2544334244.dir/CheckIncludeFile.c.o] Error 1 | |
make: *** [cmTryCompileExec2544334244/fast] Error 2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment