Jj0YzL5nvJ

Results 116 comments of Jj0YzL5nvJ

Pick your poison: - [m64p](https://github.com/loganmc10/m64p/releases) - [Build Mupen64Plus](https://github.com/mupen64plus/mupen64plus-core/issues/797) - [Build RetroArch + Mupen64Plus-Next](https://github.com/libretro/libretro-super)

Many of these issues go away building with `OPTFLAGS="-O2"`. At least on `i915`, `r600`, `radeon` and `amdgpu`.

[Take this as example...](https://github.com/loganmc10/m64p/blob/76b4f5d952b40e976920513891f189ba50782ac7/.github/workflows/build.yml#L62)

I assuming you don't understand the "issue"... **Darwin** is macOS. https://github.com/loganmc10/m64p/blob/master/build.sh#L5-L27 Try adding: ``` export CXXFLAGS='-stdlib=libc++' export LDFLAGS='-mmacosx-version-min=10.7' export OPTFLAGS="-O2" ``` **If** that fail, add: ``` export OSD=0 export NO_ASM=1...

It seems like macOS users didn't pay attention to this project for a looooooong time. I'm starting to think that [m64p](https://github.com/loganmc10/m64p) has been successfully compiled thanks to the entropy in...

Welcome to "upstream": https://github.com/loganmc10/m64p/blob/4b2b64b72285dd68463d7deff45aee436b742606/mupen64plus-audio-sdl2/projects/unix/Makefile#L121 https://github.com/loganmc10/m64p/blob/4b2b64b72285dd68463d7deff45aee436b742606/mupen64plus-core/projects/unix/Makefile#L202 https://github.com/loganmc10/m64p/blob/4b2b64b72285dd68463d7deff45aee436b742606/mupen64plus-rsp-hle/projects/unix/Makefile#L170 https://github.com/loganmc10/m64p/blob/4b2b64b72285dd68463d7deff45aee436b742606/mupen64plus-input-raphnetraw/projects/unix/Makefile#L124

Exactly, any change in "upstream" indirectly benefits "downstream". I'm summons you with hopes of goodwill as this concerns macOS users, although the problem does not appear to affect m64p to...

P.S: I'm not macOS user, I'm Linux user and I can help to script things for Windows and Linux. But macOS is out of my league.

**O_o!** Are you sure you are using [brew](https://brew.sh/)? > o.o how did we go about changing the directory the dependencies are expected in? https://github.com/mupen64plus/mupen64plus-video-glide64mk2/blob/aecf15ec2044c593b0505bd052270bd662902e08/projects/unix/Makefile#L192-L196 LDFLAGS += -L/your/custom/libs CFLAGS += -I...

How ironic, I prefer to compile with Clang in Linux. Some quirks are fixed by compiling with `OPTFLAGS=-O2` instead of `-O3`. Some others avoiding use dynarecs. #572, #738, #787