mirror of
https://github.com/janet-lang/janet
synced 2025-11-13 22:07:13 +00:00
Enable FFI module unconditionally.
This commit is contained in:
@@ -6,8 +6,8 @@
|
|||||||
#define JANET_VERSION_MAJOR 1
|
#define JANET_VERSION_MAJOR 1
|
||||||
#define JANET_VERSION_MINOR 28
|
#define JANET_VERSION_MINOR 28
|
||||||
#define JANET_VERSION_PATCH 0
|
#define JANET_VERSION_PATCH 0
|
||||||
#define JANET_VERSION_EXTRA ""
|
#define JANET_VERSION_EXTRA "-dev"
|
||||||
#define JANET_VERSION "1.28.0"
|
#define JANET_VERSION "1.28.0-dev"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ extern "C" {
|
|||||||
/* Enable or disable the FFI library. Currently, FFI only enabled on
|
/* Enable or disable the FFI library. Currently, FFI only enabled on
|
||||||
* x86-64 operating systems. */
|
* x86-64 operating systems. */
|
||||||
#ifndef JANET_NO_FFI
|
#ifndef JANET_NO_FFI
|
||||||
#if !defined(__EMSCRIPTEN__) && (defined(__x86_64__) || defined(_M_X64))
|
#if !defined(__EMSCRIPTEN__)
|
||||||
#define JANET_FFI
|
#define JANET_FFI
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user