Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# sass (development version)

- Fixed throwing exceptions when running under Emscripten.

# sass 0.4.10

- Closed #149: `FileCache` R6 class `finalize()` method should be private. (#150)
Expand Down
4 changes: 4 additions & 0 deletions src/libsass/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ else
STATIC_LIBSTDCPP ?= 0
endif

ifeq (Emscripten,$(UNAME))
CXXFLAGS += -fwasm-exceptions
endif

ifndef SASS_LIBSASS_PATH
SASS_LIBSASS_PATH = .
endif
Expand Down
Loading