Skip to content

Commit d8599f0

Browse files
committed
Merge pull request phoboslab#20 from drodriguez/align-arm64-build
Align arm64 build
2 parents 62e6116 + d4af584 commit d8599f0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

JavaScriptCore/llint/LowLevelInterpreter.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,13 @@ JSValue CLoop::execute(CallFrame* callFrame, Opcode entryOpcode, bool isInitiali
536536
".thumb\n" \
537537
".thumb_func " THUMB_FUNC_PARAM(label) "\n" \
538538
SYMBOL_STRING(label) ":\n"
539+
#elif CPU(ARM64)
540+
#define OFFLINE_ASM_GLOBAL_LABEL(label) \
541+
".text\n" \
542+
".align 4\n" \
543+
".globl " SYMBOL_STRING(label) "\n" \
544+
HIDE_SYMBOL(label) "\n" \
545+
SYMBOL_STRING(label) ":\n"
539546
#else
540547
#define OFFLINE_ASM_GLOBAL_LABEL(label) \
541548
".text\n" \

xcodebuild.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class PebbleXcodeBuildException (Exception):
2020

2121

2222
class XcodeBuild(object):
23-
sdk_version = "7.0"
23+
sdk_version = ""
2424
conf = None
2525
archs = None
2626
project = None

0 commit comments

Comments
 (0)