When trying to call mingw32-make from a Notepad++ script, it does not work. This happens since release 2.6.0, it worked on all previous releases.
Command executed from Notepad++ script, on w64devkit 2.6.0 and beyond:
mingw32-make PLATFORM=PLATFORM_WEB -B
Process started (PID=8164) >>>
make rfxgen
c:/raylib/w64devkit/bin/sh: line 0: make: not found
make: *** [Makefile:323: all] Error 127
<<< Process finished (PID=8164). (Exit code 2)
When using 2.5.0 and previous versions, it worked:
mingw32-make PLATFORM=PLATFORM_WEB -B
Process started (PID=9668) >>>
make rfxgen
make[1]: Entering directory 'C:/GitHub/rfxgen/src'
emcc -c rfxgen.c -o rfxgen.o -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Wno-unused-value -Wno-pointer-sign -std=gnu99 -O3 -I. -Iexternal -IC:/GitHub/raylib/src -DPLATFORM_WEB
emcc -o ./rfxgen.html rfxgen.o -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Wno-unused-value -Wno-pointer-sign -std=gnu99 -O3 -I. -Iexternal -IC:/GitHub/raylib/src -L. -LC:/GitHub/raylib/src -sUSE_GLFW=3 -sTOTAL_MEMORY=128MB -sSTACK_SIZE=1MB -sFORCE_FILESYSTEM=1 -sMINIFY_HTML=0 -sASYNCIFY -sASYNCIFY_STACK_SIZE=1048576 --shell-file minshell.html C:/GitHub/raylib/src/libraylib.web.a -DPLATFORM_WEB
make[1]: Leaving directory 'C:/GitHub/rfxgen/src'
<<< Process finished (PID=9668). (Exit code 0)
Note that this issue is currently affecting all raylib users that downloaded raylib through the preconfigured windows installer package, right now 8,420 users.
When trying to call
mingw32-makefrom a Notepad++ script, it does not work. This happens since release2.6.0, it worked on all previous releases.Command executed from Notepad++ script, on
w64devkit 2.6.0and beyond:When using
2.5.0and previous versions, it worked:Note that this issue is currently affecting all raylib users that downloaded raylib through the preconfigured windows installer package, right now 8,420 users.