summaryrefslogtreecommitdiff
path: root/Makefile.libretro
diff options
context:
space:
mode:
authortwinaphex <libretro@gmail.com>2021-03-12 07:03:34 +0100
committertwinaphex <libretro@gmail.com>2021-03-12 08:42:23 +0100
commit7ad576298801b63371ea08234e4b75c7c7c83de8 (patch)
tree477c0ccbd416a5a2f9f904466cbec22b9f4c9203 /Makefile.libretro
parent4cc3b5f8df646b1cab9beadc762d4148a1bccb33 (diff)
Rely on ARCH variable set by Gitlab CI template to set ABI to
32bit x86
Diffstat (limited to 'Makefile.libretro')
-rw-r--r--Makefile.libretro4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.libretro b/Makefile.libretro
index 954fa22..5b96f41 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -33,7 +33,11 @@ else
platform = linux
OS :=Linux
CC ?=gcc
+ifeq ($(ARCH),x86)
+ ABI := x86
+else
ABI := x86_64
+endif
target = libblastem.so
libname = blastem_libretro.so
endif