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

Segmentation fault: 11 #323

Closed
ivanhueso opened this issue Apr 22, 2016 · 12 comments
Closed

Segmentation fault: 11 #323

ivanhueso opened this issue Apr 22, 2016 · 12 comments

Comments

@ivanhueso
Copy link

Hi,

I just recently clone the latest pushes on master but I still have the same error: I tried with a fresh copy and I got a Segmentation fault: 11.

screen shot 2016-04-22 at 5 10 35 pm

Best,
Ivan

@mike-north
Copy link
Owner

Duplicate of #319, Addressed by #320. Cutting a new release presently

@ivanhueso
Copy link
Author

thanks @mike-north

@ivanhueso
Copy link
Author

@mike-north I pulled the latets version 0.19.0 and I still get the same error.

@mike-north
Copy link
Owner

@ivanhueso which version of ember-cli-sass is your project pointing to?

@dzena
Copy link

dzena commented May 20, 2016

@mike-north
I have the same problem.
ember-cli: 2.5.0
ember: 2.5.0

If ember-cli-sass points to 5.3.1 i don't get any errors.
When i run ember install ember-cli-materialize, ember-cli-sass points to this version: git://github.com/mike-north/ember-cli-sass.git#8ceb57d41f5774e8ececb5d1f05454449c19000c

@mike-north
Copy link
Owner

@dzena you'll run into different problems with ember-cli-sass 5.3.1. That's the correct version of ember-cli-sass to use, due to this unresolved bug

@dzena
Copy link

dzena commented May 24, 2016

@mike-north
Yes, I understand that, but when I use git://github.com/mike-north/ember-cli-sass.git#8ceb57d41f5774e8ececb5d1f05454449c19000c, ember server fails with Segmentation fault: 11.

With 5.3.1 ember servers works.

What is the right thing to do?

Here is my package.json, and with this configuration I get Segmentation fault 11:

  "devDependencies": {
    "broccoli-asset-rev": "^2.4.2",
    "broccoli-static-compiler": "^0.2.2",
    "ember-ajax": "0.7.1",
    "ember-cli": "2.5.0",
    "ember-cli-app-version": "^1.0.0",
    "ember-cli-babel": "^5.1.6",
    "ember-cli-dependency-checker": "^1.2.0",
    "ember-cli-htmlbars": "^1.0.3",
    "ember-cli-htmlbars-inline-precompile": "^0.3.1",
    "ember-cli-inject-live-reload": "^1.4.0",
    "ember-cli-jshint": "^1.0.0",
    "ember-cli-materialize": "0.19.5",
    "ember-cli-notifications": "^2.1.2",
    "ember-cli-pickadate": "^0.2.2",
    "ember-cli-qunit": "^1.4.0",
    "ember-cli-release": "0.2.8",
    "ember-cli-sass": "git://github.com/mike-north/ember-cli-sass.git#8ceb57d41f5774e8ececb5d1f05454449c19000c",
    "ember-cli-sri": "^2.1.0",
    "ember-cli-uglify": "^1.2.0",
    "ember-composability": "0.3.2",
    "ember-export-application-global": "^1.0.5",
    "ember-i18n": "4.2.1",
    "ember-key-responder": "^0.4.2",
    "ember-keyboard": "1.0.3",
    "ember-legacy-views": "^0.2.0",
    "ember-load-initializers": "^0.5.1",
    "ember-material-design-icons-shim": "0.1.5",
    "ember-materialize-shim": "0.1.6",
    "ember-modal-dialog": "0.8.4",
    "ember-new-computed": "1.0.3",
    "ember-radio-button": "1.0.7",
    "ember-resolver": "^2.0.3",
    "ember-truth-helpers": "1.2.0",
    "ember-validations": "~2.0.0-alpha.3",
    "loader.js": "^4.0.1"
  }

@mike-north
Copy link
Owner

clear node_modules and try again. It sounds like you're still pulling in the buggy version of libsass

@Oliver-Ren
Copy link

Hi, I am also having the same issue. After I create a new ember project and install the ember-cli-materialize, do the 'ember s' will have the segmentation fault:

Livereload server on http://localhost:49152
Serving on http://localhost:4200/
Segmentation fault: 11

Here is my dependencies:

"devDependencies": {
"broccoli-asset-rev": "^2.4.2",
"ember-ajax": "0.7.1",
"ember-cli": "2.5.1",
"ember-cli-app-version": "^1.0.0",
"ember-cli-babel": "^5.1.6",
"ember-cli-dependency-checker": "^1.2.0",
"ember-cli-htmlbars": "^1.0.3",
"ember-cli-htmlbars-inline-precompile": "^0.3.1",
"ember-cli-inject-live-reload": "^1.4.0",
"ember-cli-jshint": "^1.0.0",
"ember-cli-materialize": "^0.22.0-beta.0",
"ember-cli-qunit": "^1.4.0",
"ember-cli-release": "0.2.8",
"ember-cli-sass": "5.3.1",
"ember-cli-sri": "^2.1.0",
"ember-cli-uglify": "^1.2.0",
"ember-composability": "0.3.7",
"ember-data": "^2.5.0",
"ember-export-application-global": "^1.0.5",
"ember-keyboard": "1.0.3",
"ember-load-initializers": "^0.5.1",
"ember-material-design-icons-shim": "0.1.9",
"ember-materialize-shim": "0.2.3",
"ember-modal-dialog": "0.8.8",
"ember-new-computed": "1.0.3",
"ember-radio-button": "1.0.7",
"ember-resolver": "^2.0.3",
"ember-truth-helpers": "1.2.0",
"loader.js": "^4.0.1",
"node-sass": "3.4.2"
}

@dustinfarris
Copy link
Collaborator

@Oliver-Ren please use the v1 branch for new projects:

ember install "mike-north/ember-cli-materialize#v1"
ember generate ember-cli-materialize

@Oliver-Ren
Copy link

@dustinfarris I changed the node-sass from v3.4.2 to v3.10.0 and the "segment fault" problem disappeared. I will try the v1 branch later.

@tpetrone
Copy link

@Oliver-Ren: I was having the exact same issue. Changing node-sass version on package.json, cleaning the modules and running npm install solved the problem. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants