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
There are two problems with the current check for powerpc arch:
On Darwin uname -m returns Power Macintosh, and that breaks the script; what could be used instead is uname -p, however that determines cpu family, not the target arch. The correct way to find target arch would be from the triple.
There are two problems with the current check for powerpc arch:
uname -m
returnsPower Macintosh
, and that breaks the script; what could be used instead isuname -p
, however that determines cpu family, not the target arch. The correct way to find target arch would be from the triple.powerpc64
forpowerpc
:It should be
ifneq ($(filter ppc64 powerpc64,$(TARGET_ARCH)),)
, otherwise it will always bepowerpc64
, even on 32-bit.The text was updated successfully, but these errors were encountered: