Merged
Conversation
…works see: mimmutable(1) google/syzkaller@bc009f8
<signal.h> provides `typedef struct sigcontext ucontext_t;'. take register names from <machine/signal.h>, which provides struct sigcontext. see: RPCS3/rpcs3@1a13d3a
Use sdl_open_joystick() to open controllers on startup instead of SDL_JOYDEVICEADDED event, which never gets detected.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Before I submit a port for OpenBSD for flycast, I would like to submit some patches. On OpenBSD 7.2 -current, BSS is now immutable and mprotect can't work. Mark it as mutable to allow mprotect to work. This is the main change for OpenBSD as of 7.2 -current (I had it working in 7.1.)
I applied a similar fix for the desmume port:
https://marc.info/?l=openbsd-ports&m=167055339501257&w=2
More information on mimmutable:
https://marc.info/?l=openbsd-tech&m=166874067828564&w=2
Moreover, I've included other fixes. I'm able to run flycast on OpenBSD with this and some other cmakelists changes, which I have omitted for ease of review.
Original issue where you helped me: libretro/flycast#624