Skip to content
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

[BugFix] Fix bugs in spmm #210

Merged
merged 12 commits into from
Mar 23, 2021
Prev Previous commit
Next Next commit
Add gcc to .travs.yml
THINK2TRY committed Mar 21, 2021

Verified

This commit was signed with the committer’s verified signature.
Vlatombe Vincent Latombe
commit 7a7dad6e88f093e8996cef0b726b7d3a0aa15992
12 changes: 12 additions & 0 deletions scripts/installation/gcc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes
sudo apt update
sudo apt install gcc-7 g++-7 --yes
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 60 \
--slave /usr/bin/g++ g++ /usr/bin/g++-7
sudo update-alternatives --config gcc
gcc --version
g++ --version
fi