question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Segmentation fault (core dumped)

See original GitHub issue

Hi. After updating the plugin (“gulp-sass”) and also breaching recommendations… the task displays the following error, after add to style file:

@import "mixin/mixin";

[16:04:16] Starting 'sass'...
[16:04:16] Finished 'sass' after 9.55 ms
**Segmentation fault (core dumped)**

Example tasks:

gulp.task('sass', function() { 
    gulp.src({path_to_src})
        .pipe(sass().on('error', sass.logError))
        .pipe(gulp.dest({path_to_dist}));
});

package.json:

"gulp-sass": "^2.2.0",

File structure:

style
   |__function
      |__function.scss
   |__mixin
      |__mixin.scss
   |__variable
      |__variable.scss
   |__...
style.scss (uses @import '{path/to/file{mixin||function||variable}}')

Ta!

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Comments:5

github_iconTop GitHub Comments

1reaction
tarpeycommented, Apr 21, 2016

I’m getting this with with materialize.scss, too.

0reactions
xzyfercommented, Apr 26, 2016

node-sass@3.6.0 was released today which fixes the segfault with normalize-css

Read more comments on GitHub >

github_iconTop Results From Across the Web

what is Segmentation fault (core dumped)? - Stack Overflow
"Segmentation fault" means that you tried to access memory that you do not have access to. The first problem is with your arguments...
Read more >
Identify what's causing segmentation faults (segfaults) - IU KB
A segmentation fault (aka segfault) is a common condition that causes programs to crash; they are often associated with a file named core...
Read more >
Error :- Segmentation fault(Core Dumped) - CodeChef Discuss
A segmentation fault ( SEGFAULT ) occurs when you are trying to access memory which you should not be trying to access (...
Read more >
Resolving Segmentation Fault (“Core dumped”) in Ubuntu - Blog
Segmentation fault is when your system tries to access a page of memory that doesn't exist. Core dumped means when a part of...
Read more >
Segmentation Fault Core Dumped Ubuntu - Javatpoint
Segmentation fault is when our system attempts to access any page of memory that does not exist. Core dumped defines when a code...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found