Skip to content
This repository was archived by the owner on Feb 17, 2022. It is now read-only.

Commit 1736e24

Browse files
committed
Try to resolve GCC version problem
1 parent 50dbb16 commit 1736e24

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,14 @@ language: node_js
22
node_js:
33
- "6"
44

5+
# cc1plus: error: unrecognized command line option ‘-std=c++11’
6+
# https://travis-ci.org/Firstbloodio/token/jobs/162352873
7+
# https://github.com/sass/node-sass/pull/493#issuecomment-60920605
8+
# https://github.com/sass/node-sass/blob/master/.travis.yml
9+
before_install:
10+
- if [ $TRAVIS_OS_NAME == "linux" ]; then
11+
export CC="gcc-4.7";
12+
export CXX="g++-4.7";
13+
export LINK="gcc-4.7";
14+
export LINKXX="g++-4.7";
15+
fi

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"test": "mocha test"
88
},
99
"author": "FirstBlood.io team",
10+
"license": "MIT",
1011
"dependencies": {
1112
"assert": "^1.4.1",
1213
"async": "^2.0.1",

0 commit comments

Comments
 (0)