You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifically, some code inside #if defined(__x86_64__) || TARGET_OS_IPHONE sections are needed to build a working mininush otherwise subsequent build steps output:
==> ./mininush tools/nuke
Nu uncaught exception: NuIvarAddedTooLate: explicit instance variables must be added when a class is created and before any method declarations
from tools/nuke:137: in ivar
from <TopLevel>:-1: in class
from <TopLevel>:1: in progn
Not entirely sure what conditional is needed so opened issue rather than PR. In Homebrew, I just added defined(__arm64__) to compile the code.
Seen while fixing Homebrew ARM64 build: Homebrew/homebrew-core#112070
Specifically, some code inside
#if defined(__x86_64__) || TARGET_OS_IPHONE
sections are needed to build a workingmininush
otherwise subsequent build steps output:Not entirely sure what conditional is needed so opened issue rather than PR. In Homebrew, I just added
defined(__arm64__)
to compile the code.e.g.
nu/objc/NuOperators.m
Lines 1798 to 1800 in 1b0cd7f
nu/objc/NuOperators.m
Line 1814 in 1b0cd7f
nu/objc/NuOperators.m
Line 1856 in 1b0cd7f
The text was updated successfully, but these errors were encountered: