dciabrin / ngdevkit

Open source development for Neo-Geo
GNU Lesser General Public License v3.0
272 stars 26 forks source link

pip3 install pygame #107

Closed jeromeEzDATASolutions closed 6 months ago

jeromeEzDATASolutions commented 6 months ago

ngdevkit compil ok but now ive this error 👍

Capture d’écran 2024-03-14 à 08 29 10
jeromeEzDATASolutions commented 6 months ago

i use --break-system-packages and its ok but now it's not possible to comile a game

Capture d’écran 2024-03-14 à 08 36 08
dciabrin commented 6 months ago

Thanks for reporting the pip3 breakage, that's a new warning in brew apparently.. While one can install pygame in a virtualenv for cleaner install, brew currently doesn't ship pygame, so for the time being it's safe to use --break-system-packages. I'll update the main doc accordingly.

As for your second warning, this has nothing to do with pip. If the makefile is derived from ngdevkit-examples, it probably means the 68k compiler from ngdevkit-toolchain was not found in path, and got configured incorrectly:

$(M68KGCC) $(NGCFLAGS) -std=gnu99 -fomit-frame-pointer -g -c $< -o $@

Check whether M68KGCC is set to something in Makefile.config. Otherwise, please update ngdevkit-examples and re-run ./configure

jeromeEzDATASolutions commented 6 months ago

all is ok Thanks a lot