Peter Mackay
Peter Mackay
Does Xenia definitely require features from OpenGL 4.5, or is that the minimum requirement because it's more convenient? Maybe it would be possible to support 4.1 or 4.2 with some...
OpenGL is being deprecated, not removed... Yet.
I would also vote for using `stdint.h` types over `WORD`. I'm having to copy and fix up the code locally.
You can use a tool like `xdftool` for this: https://amitools.readthedocs.io/en/latest/tools/xdftool.html Untested but try something like: ``` xdftool mygame.adf format MyGame ffs + boot install + write a.mingw.exe mygame + makedir...
I gave it a try last night, starting with the Linux build as I figured that's maybe easier than trying to get WSL working on GitHub Actions. Hit a snag...
Thanks. Is that because I'm building on Linux but I've built a MinGW exe? I'm not going to be able to run the exe on a Linux-hosted GitHub runner. Maybe...
I had to remove the step with sed, as something couldn't find the temp Makefile. https://github.com/petmac/vscode-amiga-debug/runs/7310364546 ``` sed 's/selftest # srcextra/# selftest srcextra/' gcc/Makefile >gcc/Makefile.tmp mv gcc/Makefile.tmp gcc/Makefile (snip) gcc/Makefile.tmp:...
Thanks. I got GCC building under Linux. I think I need to fiddle a bit with the strip command. https://github.com/petmac/vscode-amiga-debug/actions/runs/2666640330 Next up, I'll look at elf2hunk. Is porting Shrinkler required?
I hope you don't mind, I submitted a PR for elf2hunk, to get it compiling for Linux and Mac. https://github.com/BartmanAbyss/elf2hunk/pull/2
That's great, thanks. I wonder if we can shorten the build time at all. Binutils+GDB takes about 11 minutes just for the build step, and GCC takes about 16 minutes....