diff options
author | twinaphex <libretro@gmail.com> | 2021-03-12 07:07:25 +0100 |
---|---|---|
committer | twinaphex <libretro@gmail.com> | 2021-03-12 08:42:23 +0100 |
commit | e70b05bf5b5954140cba227fc996ab24c064d494 (patch) | |
tree | 3694838bab95494a8246b78ce83d16771381cf9d | |
parent | 7ad576298801b63371ea08234e4b75c7c7c83de8 (diff) |
See if setting ABI to i686 works instead
-rw-r--r-- | Makefile.libretro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index 5b96f41..b48532d 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -34,7 +34,7 @@ else OS :=Linux CC ?=gcc ifeq ($(ARCH),x86) - ABI := x86 + ABI := i686 else ABI := x86_64 endif |