We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 166c796 + 245f8d0 commit 087e244Copy full SHA for 087e244
config.py
@@ -1,5 +1,5 @@
1
def can_build(env, platform):
2
- return (platform == "windows" and env["use_mingw"]) or platform == "linux"
+ return (platform == "windows" and env["use_mingw"]) or platform == "linux" or platform == "macos"
3
4
5
def configure(env):
thirdparty/quickjs/quickjs/cutils.h
@@ -31,7 +31,7 @@
31
/* set if CPU is big endian */
32
#undef WORDS_BIGENDIAN
33
34
-#if (defined(_MSC_VER) || !defined(__MINGW32__)) && !defined(LINUX_ENABLED)
+#if (defined(_MSC_VER) || !defined(__MINGW32__)) && !defined(LINUX_ENABLED) && !defined(MACOS_ENABLED)
35
#define likely(x) (x)
36
#define unlikely(x) (x)
37
#define force_inline __forceinline
0 commit comments