Skip to content

Commit

Permalink
config: Exclude 'osx-x86_64' and 'osx-arm64' for supafaust
Browse files Browse the repository at this point in the history
This is due to Beetle Supafaust not compiling on macOS versions since
Big Sur (version 11.0).

Errors are:

  mednafen/mthreading/MThreading_POSIX.cpp:585:5: error: use of undeclared identifier 'sem_timedwait'; did you mean 'Sem_TimedWait'?
   if(sem_timedwait(&sem->s, &abstime))
      ^~~~~~~~~~~~~
      Sem_TimedWait

  mednafen/mthreading/MThreading_POSIX.cpp:585:19: error: cannot initialize a parameter of type 'Mednafen::MThreading::Sem *' with an rvalue of type 'sem_t *' (aka 'int *')
   if(sem_timedwait(&sem->s, &abstime))
                    ^~~~~~~
  • Loading branch information
garbear committed Aug 12, 2024
1 parent 91b6dd9 commit 809647c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kodi_game_scripting/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
'snes9x2002': ('snes9x2002', 'Makefile', '.', 'jni', {}),
'snes9x2010': ('snes9x2010', 'Makefile', '.', 'jni', {}),
'stella': ('stella-emu/stella', 'Makefile', 'src/os/libretro', 'src/os/libretro/jni', {}),
'supafaust': ('supafaust', 'Makefile', '.', 'jni', {'soname': 'mednafen_supafaust'}),
'supafaust': ('supafaust', 'Makefile', '.', 'jni', {'soname': 'mednafen_supafaust', 'exclude_platforms': ['osx-x86_64', 'osx-arm64']}),
'swanstation': ('swanstation', '', '.', '', {'branch': 'main', 'cmake': True}),
'tgbdual': ('tgbdual-libretro', 'Makefile', '.', 'jni', {}),
'theodore': ('Zlika/theodore', 'Makefile', '.', 'jni', {}),
Expand Down

0 comments on commit 809647c

Please sign in to comment.