Skip to content

Commit 087e244

Browse files
committed
git subrepo pull (merge) modules/javascript
subrepo: subdir: "modules/javascript" merged: "2f96dee34e3" upstream: origin: "https://github.com/Geequlim/ECMAScript.git" branch: "gd4-rebase" commit: "245f8d00480" git-subrepo: version: "0.4.6" origin: "???" commit: "???"
2 parents 166c796 + 245f8d0 commit 087e244

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
def can_build(env, platform):
2-
return (platform == "windows" and env["use_mingw"]) or platform == "linux"
2+
return (platform == "windows" and env["use_mingw"]) or platform == "linux" or platform == "macos"
33

44

55
def configure(env):

thirdparty/quickjs/quickjs/cutils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/* set if CPU is big endian */
3232
#undef WORDS_BIGENDIAN
3333

34-
#if (defined(_MSC_VER) || !defined(__MINGW32__)) && !defined(LINUX_ENABLED)
34+
#if (defined(_MSC_VER) || !defined(__MINGW32__)) && !defined(LINUX_ENABLED) && !defined(MACOS_ENABLED)
3535
#define likely(x) (x)
3636
#define unlikely(x) (x)
3737
#define force_inline __forceinline

0 commit comments

Comments
 (0)