Opened 8 years ago
Closed 8 years ago
#12912 closed bug (fixed)
undefined reference for _setjmp
Reported by: | KapiX | Owned by: | axeld |
---|---|---|---|
Priority: | normal | Milestone: | Unscheduled |
Component: | System/libroot.so | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | x86 |
Description
I am trying to compile Embeddable Common Lisp [1], but _setjmp
is not defined in libroot. setjmp
works fine so I am using a workaround for now:
#define _setjmp setjmp
hrev50467 gcc4h
Note:
See TracTickets
for help on using tickets.
The problem is not in ECL: it checks whether
_longjmp
is defined and then uses proper functions. Problem is_longjmp
is in libroot and_setjmp
is not.