mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-16 06:12:25 -08:00
Signal an error if fpe_x86.c is included in a WIN64 build
This commit is contained in:
parent
77c033a3d7
commit
9171c8d6a1
1 changed files with 5 additions and 1 deletions
6
src/c/arch/fpe_x86.c
Normal file → Executable file
6
src/c/arch/fpe_x86.c
Normal file → Executable file
|
|
@ -18,7 +18,11 @@
|
|||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define ecl_detect_fpe() __asm fwait
|
||||
# ifdef _WIN64
|
||||
# error "This file shouldn't have been included!"
|
||||
# else
|
||||
# define ecl_detect_fpe() __asm fwait
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifdef __GNUC__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue