forked from lix-project/lix
70e68e0ec6
Previously, if the Nix evaluator gets a stack overflow due to a deep or infinite recursion in the Nix expression, the user gets an unhelpful message ("Segmentation fault") that doesn't indicate that the problem is in the user's code rather than Nix itself. Now it prints: error: stack overflow (possible infinite recursion) This only works on x86_64-linux and i686-linux. Fixes #35.
12 lines
247 B
Makefile
12 lines
247 B
Makefile
pkglib_LTLIBRARIES = libmain.la
|
|
|
|
libmain_la_SOURCES = shared.cc stack.cc
|
|
|
|
libmain_la_LIBADD = ../libstore/libstore.la @BDW_GC_LIBS@
|
|
|
|
pkginclude_HEADERS = shared.hh
|
|
|
|
AM_CXXFLAGS = \
|
|
-I$(srcdir)/.. -I$(srcdir)/../libutil \
|
|
-I$(srcdir)/../libstore
|