mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-17 06:42:18 -08:00
Some versions of Clang do not allow computed gotos.
This commit is contained in:
parent
24d5030c77
commit
1b78dcc002
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ typedef int16_t cl_oparg;
|
|||
* NOTE: We cannot use this in Solaris because GCC erroneously produces
|
||||
* relocation tables.
|
||||
*/
|
||||
#if (defined(__GNUC__) && !defined(__STRICT_ANSI__))
|
||||
#if (defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__clang__))
|
||||
#define ECL_THREADED_INTERPRETER
|
||||
# if defined(__sun__) && (FIXNUM_BITS > 32)
|
||||
# undef ECL_THREADED_INTERPRETER
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue