-
-
Notifications
You must be signed in to change notification settings - Fork 491
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
singular believes the Sun C++ compiler is broken. #7031
Labels
Comments
comment:5
Outdated, should be closed |
comment:6
The goal of these tickets is laudable, but:
|
Reviewer: Michael Orlitzky |
comment:7
Closing very old sun/solaris tickets. Any tentative for this OS should start afresh. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using
CC was set to the Sun C compler, and CXX to the Sun C++ compiler. The singular configure script does not believe the Sun C++ compiler can create executables. This is the same sort of error as seen in quaddouble-2.2.p9 #7030.
This time the problem is easy to diagnose. The test is used adds the option -fPIC when trying to test the C++ compiler. But -fPIC is a GNU-specific option - it is not acceptable to the Sun C++ compiler. Instead -xcode=pic32, -KPIC or -PIC would work, but not -fPIC.
It's clearly dumb to send a GNU specific option to test a C++ compiler unless you are 100% sure the C++ compiler is the GNU C++ compiler.
CC: @dimpase
Component: porting: Solaris
Reviewer: Michael Orlitzky
Issue created by migration from https://trac.sagemath.org/ticket/7031
The text was updated successfully, but these errors were encountered: