From b684e2a72bf6e3a85d5aa7b0884873eb28467ceb Mon Sep 17 00:00:00 2001 From: Frederik Haxel Date: Fri, 29 Sep 2023 17:59:01 +0200 Subject: [PATCH] fixup! native: 64 bit compatibility and Linux/x86_64 support for the native board --- boards/native/Makefile.include | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/native/Makefile.include b/boards/native/Makefile.include index 3b003ff8647d..969c3c34739d 100644 --- a/boards/native/Makefile.include +++ b/boards/native/Makefile.include @@ -76,9 +76,9 @@ ifeq ($(OS_ARCH),x86_64) endif ifeq ($(OS),FreeBSD) ifeq ($(OS_ARCH),amd64) - ifneq ($(NATIVE_64BIT), y) + ifeq ($(NATIVE_64BIT), y) LINKFLAGS += -m64 - else + else LINKFLAGS += -m32 -DCOMPAT_32BIT -L/usr/lib32 -B/usr/lib32 endif endif