diff options
author | twinaphex <libretro@gmail.com> | 2021-03-12 07:03:34 +0100 |
---|---|---|
committer | twinaphex <libretro@gmail.com> | 2021-03-12 08:42:23 +0100 |
commit | 7ad576298801b63371ea08234e4b75c7c7c83de8 (patch) | |
tree | 477c0ccbd416a5a2f9f904466cbec22b9f4c9203 | |
parent | 4cc3b5f8df646b1cab9beadc762d4148a1bccb33 (diff) |
Rely on ARCH variable set by Gitlab CI template to set ABI to
32bit x86
-rw-r--r-- | Makefile.libretro | 4 |
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 |