-
Notifications
You must be signed in to change notification settings - Fork 25
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
Ensure g++ is a dependency on openSUSE #190
Comments
I believe we install gcc for other platforms. Can we do it for openSUSE as well? |
The right solution may be to make GCC/G++ install dependencies, if that's supported by the openSUSE package manager we use. |
openSUSE package manager support installing gcc++ From: David Smith [mailto:[email protected]] The right solution may be to make GCC/G++ install dependencies, if that's supported by the openSUSE package manager we use. — |
gcc is there; g++ was missing... |
I think for now, we should just document the workaround for the next release: zypper install gcc-c++ |
Confirmed that this resolves the problem and allows SuppDists to be installed. |
Listed as a manual install step for 3.2.1. However, needs to be handled by the installer in our next release. The distro needs to have this as a dependency going forward. |
Just noting that this was also an issue on a CentOS 6 VM that I set up on Azure. Just did |
Using an openSUSE image from Azure, I could install and run RRO, but when I tried to install the SuppDists package to run the R benchmarks, I get a message
make: g++: Command not found
make: *** [dists.o] Error 127
ERROR: compilation failed for package 'SuppDists'
Adding g++ with the following command run from a root shell did the trick; perhaps we need an installation note?
zypper in gcc-c++
The text was updated successfully, but these errors were encountered: