CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > SU2 > SU2 Installation

SU2 Installation error

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 1, 2019, 03:41
Default SU2 Installation error
  #1
New Member
 
Tarun
Join Date: Mar 2019
Posts: 1
Rep Power: 0
tarun_ is on a distinguished road
Hello everyone

I am trying to install SU2 on Mac as per the instructions on the website.
when i try to compile SU2 by command $make, i am getting the following error :

Undefined symbols for architecture x86_64:
"double abs<double>(std::__1::complex<double> const&)", referenced from:
CHBDriver::ComputeHB_Operator() in libSU2Core.a(libSU2Core_a-driver_structure.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]: *** [../bin/SU2_CFD] Error 1
make: *** [all-recursive] Error 1

Please see attached screenshot for details.

Screenshot 2019-05-01 at 8.37.34 AM.png
tarun_ is offline   Reply With Quote

Old   June 11, 2019, 07:24
Default Same problem
  #2
New Member
 
Juan Salazar
Join Date: Jun 2019
Posts: 19
Rep Power: 6
saladbowl is on a distinguished road
Hi!

I am having the same issue. Did you find a solution?

OS: macOS 10.14.5 (18F132)

$ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/c++/4.2.1
Apple LLVM version 10.0.1 (clang-1001.0.46.4)
Target: x86_64-apple-darwin18.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

$ g++ --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/c++/4.2.1
Apple LLVM version 10.0.1 (clang-1001.0.46.4)
Target: x86_64-apple-darwin18.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

I also tried to compile with home-brew installed gcc using the appropriate compilation flags, --with-gcc=/usr/local/bin/gcc-9 and --with-gcxx=/usr/local/bin/g++-9

$ /usr/local/bin/gcc-9 --version
gcc-9 (Homebrew GCC 9.1.0) 9.1.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$/usr/local/bin/g++-9 --version
g++-9 (Homebrew GCC 9.1.0) 9.1.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
saladbowl is offline   Reply With Quote

Old   July 26, 2019, 19:54
Default Same Installation Error
  #3
New Member
 
Join Date: Jul 2019
Posts: 5
Rep Power: 6
hpatel is on a distinguished road
Quote:
Originally Posted by tarun_ View Post
Hello everyone

I am trying to install SU2 on Mac as per the instructions on the website.
when i try to compile SU2 by command $make, i am getting the following error :

Undefined symbols for architecture x86_64:
"double abs<double>(std::__1::complex<double> const&)", referenced from:
CHBDriver::ComputeHB_Operator() in libSU2Core.a(libSU2Core_a-driver_structure.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]: *** [../bin/SU2_CFD] Error 1
make: *** [all-recursive] Error 1

Please see attached screenshot for details.

Attachment 69719
I am getting the exact same error when I try to configure SU2. Is there a known fix for this issue on MacOS?

------------------------------EDIT------------------------------

Tthis command worked for me:
./configure --prefix=/path/to/SU2 --enable-mpi CXXFLAGS="-std=c++11"

Last edited by hpatel; August 9, 2019 at 23:25. Reason: Solution found
hpatel is offline   Reply With Quote

Old   October 20, 2019, 07:53
Default
  #4
Member
 
Hyun Ko
Join Date: Jun 2009
Posts: 32
Rep Power: 16
hyunko is on a distinguished road
Same error happens for me.
MacOS Catalina.
Have any update for that issue?
hyunko is offline   Reply With Quote

Old   October 25, 2019, 05:04
Default
  #5
Member
 
Shuvayan Brahmachary
Join Date: Oct 2012
Posts: 36
Rep Power: 13
b.shuvayan is on a distinguished road
Quote:
Originally Posted by tarun_ View Post
Hello everyone

I am trying to install SU2 on Mac as per the instructions on the website.
when i try to compile SU2 by command $make, i am getting the following error :

Undefined symbols for architecture x86_64:
"double abs<double>(std::__1::complex<double> const&)", referenced from:
CHBDriver::ComputeHB_Operator() in libSU2Core.a(libSU2Core_a-driver_structure.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]: *** [../bin/SU2_CFD] Error 1
make: *** [all-recursive] Error 1

Please see attached screenshot for details.

Attachment 69719



I too had similar problem but I have been able to install SU2 6.2 Falcon on MacOS (Mojive). The issue, as evident from your error report, is clearly caused due to the link between clang and g++. Try the following in terminal:

$ g++ --version # this will tell you the version of g++ compiler installed. If not installed, you will need to install that. Homebrew is a good option for that. Once installed, type

$ g++ # this will likely give an error saying 'clang: error: no input files'

You would need to unlink 'clang' from 'g++'. Type the following in the terminal

$ cd usr/local/bin # this will navigate to bin folder. Populate the directory contents with 'ls'

$ ls # You will probably notice that standalone g++ is missing but instead the installed version of g++ (g++-9 in my case) is present. Type the following

$ ln -s g++-9 g++ # assuming you have the last version of g++ -9 compiler, this will create a new g++ folder in the directory. They have been unlinked. type 'ls' in the terminal to confirm and check.

$ ls # Check for the standalone folder named 'g++'. You may need to log-out and then log-in to your system again for the changes to take effect. Try running the SU2 installation again (I presume you use 'bootstrap', 'configure', 'make' and 'make install'). This will install SU2 without the clang error. This was the only way I could get it to work.
b.shuvayan is offline   Reply With Quote

Old   October 26, 2019, 21:11
Default
  #6
New Member
 
Join Date: Aug 2017
Posts: 1
Rep Power: 0
agrenke is on a distinguished road
Thanks for the helpful post Shuvayan. I've tried what you suggested, and but I still get the same error after trying to compile:

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]: *** [../bin/SU2_CFD] Error 1
make: *** [all-recursive] Error 1



Currently running MacOS 10.15 with the following configuration line:

./configure --enable-mpi --with-cc=/usr/local/bin/mpicc --with-cxx=/usr/local/bin/mpicc CXXFLAGS="-O3"

I've attached the complete output in some text files + some screenshots.

When I type "g++", it appears that I have successfully unlinked g++ and clang:

g++: fatal error: no input files
compilation terminated.


However, I'm also wondering if I have to do something similar for gcc, mpicc, or mpicxx, since they all seem to be currently linked to clang.

Really appreciate the help!
Attached Images
File Type: jpg clang link error MacOS.jpg (207.8 KB, 14 views)
Attached Files
File Type: txt SU2-6.2.0 configure and make error clang linker error.txt (148.0 KB, 6 views)
agrenke is offline   Reply With Quote

Old   October 29, 2019, 20:30
Default
  #7
New Member
 
Join Date: Oct 2012
Posts: 2
Rep Power: 0
rogerlt is on a distinguished road
Any updates for this issue? I have tried the latest clang and clang++ with llvm 9.0.0 version, but not worked.
rogerlt is offline   Reply With Quote

Old   December 3, 2019, 04:06
Default
  #8
New Member
 
Join Date: Dec 2019
Posts: 9
Rep Power: 6
filo-gor is on a distinguished road
On Mac you need to go to $SU2_HOME/Common/include/ad_structure.hpp and $SU2_HOME/Common/src/ad_structure.cpp comment lines from #ifdef __APPLE__ to #endif

Try to $make clean to remove all other errors.

Finally should work properly
filo-gor is offline   Reply With Quote

Old   December 3, 2019, 13:03
Default
  #9
Super Moderator
 
Tim Albring
Join Date: Sep 2015
Posts: 195
Rep Power: 10
talbring is on a distinguished road
Hi guys,

can you open an Issue on github for this ? Then we have can have a look at the problem.

Best,
Tim
__________________
Developer Director @ SU2 Foundation

Get involved:
talbring is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
[OpenFOAM] an error in Calculator's equation immortality ParaView 12 June 29, 2021 00:10
[blockMesh] blockMesh with double grading. spwater OpenFOAM Meshing & Mesh Conversion 92 January 12, 2019 09:00
DPM udf error haghshenasfard FLUENT 0 April 13, 2016 06:35
Errors in UDF shashank312 Fluent UDF and Scheme Programming 6 May 30, 2013 20:30
How to get the max value of the whole field waynezw0618 OpenFOAM Running, Solving & CFD 4 June 17, 2008 05:07


All times are GMT -4. The time now is 11:13.