We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3afd45 commit 8e45931Copy full SHA for 8e45931
Makefile.defs
@@ -604,8 +604,10 @@ endif
604
605
HOST_ARCH:=-march=native
606
ifdef APPIMAGE
607
- # We want to run the AppImage on any 64-bit CPU
608
- HOST_ARCH:=-mtune=generic -march=x86-64
+ ifneq (,$(filter x86_64-%,$(TARGET_MACHINE)))
+ # We want to run the AppImage on any 64-bit CPU
609
+ HOST_ARCH:=-mtune=generic -march=x86-64
610
+ endif
611
endif
612
613
ifeq ($(TARGET), linux)
0 commit comments