When targeting arm64e, ISA pointers, class_ro_t pointers, and interface selectors are signed in Objective-C. This PR adds support for that in the expression evaluator.
11 lines
160 B
Makefile
11 lines
160 B
Makefile
OBJC_SOURCES := main.m
|
|
|
|
override ARCH := arm64e
|
|
|
|
# We need an arm64e stdlib.
|
|
USE_SYSTEM_STDLIB := 1
|
|
|
|
LD_EXTRAS := -framework Foundation
|
|
|
|
include Makefile.rules
|