diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-07-30 23:25:37 +0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-07-30 23:37:10 +0200 |
commit | 70e68e0ec604124bb248ea4d064307bbf96e7932 (patch) | |
tree | ba15bf6c08a80d254f2d2af859c4a8b46ed14f75 /src/libmain/Makefile.am | |
parent | e87d1a63bdef0ae08f2d94d67fd8daa8fbb63fb4 (diff) |
Detect stack overflows
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.
Diffstat (limited to 'src/libmain/Makefile.am')
-rw-r--r-- | src/libmain/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmain/Makefile.am b/src/libmain/Makefile.am index 6a2d7f5f5..75b9d83dc 100644 --- a/src/libmain/Makefile.am +++ b/src/libmain/Makefile.am @@ -1,6 +1,6 @@ pkglib_LTLIBRARIES = libmain.la -libmain_la_SOURCES = shared.cc +libmain_la_SOURCES = shared.cc stack.cc libmain_la_LIBADD = ../libstore/libstore.la @BDW_GC_LIBS@ |