From 1dc200b9e0994baed0b464a31344245f53d4211d Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Tue, 25 Jun 2013 23:40:55 +0200 Subject: [PATCH] On Linux, set the default executable suffix to 'uname -m' --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b4174339..689a61d4 100644 --- a/Makefile +++ b/Makefile @@ -172,7 +172,7 @@ ifeq ($(OS),Linux) CFLAGS_COMMON += -fPIC LDFLAGS_DLL = -fPIC -ldl LIBS_COMMON = -lpthread - EXE ?= x86 + EXE ?= $(shell uname -m) A = a DLL = so MWINDOWS = -- 2.39.2