uart/host: Don't try to build a 32bit binary

The host these days is typically a x86_64 machine without any i386
compatibility. Let's build whatever is native, don't use "-m32"
This commit is contained in:
Harald Welte 2022-12-11 22:50:17 +01:00
parent 2df8703cd3
commit 1622d8a55f
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
else if [ -x /bin/bash ]; then echo /bin/bash; \
else echo sh; fi ; fi)
HOSTCC = gcc -m32
HOSTCC = gcc
HOSTCFLAGS = -Wall -Wstrict-prototypes -O2
#########################################################################