Problem:
I was trying this backend, and since i haven't got space left in my C: drive, i installed devkitPro on my D: drive.
When i tried it, the transpile task worked fine, but when i executed the run task, it failed because it was trying to search for gcc
on the C: drive.
I was able to track it to the build.gradle, in which the run task tries to execute gcc from "C:\devkitPro\msys2\mingw64\bin", and subsequently fails if it isn't on that path.
Possible Solution:
I was able to fix it by replacing C: with D: in the build.gradle, so maybe a solution would be to check on various drives to see if devkitPro is there.
Also, using backslash (\) instead of forward slash (/) makes it incompatible with anything that isn't windows.
Problem:
I was trying this backend, and since i haven't got space left in my C: drive, i installed devkitPro on my D: drive.
When i tried it, the transpile task worked fine, but when i executed the run task, it failed because it was trying to search for gcc
on the C: drive.
I was able to track it to the build.gradle, in which the run task tries to execute gcc from "C:\devkitPro\msys2\mingw64\bin", and subsequently fails if it isn't on that path.
Possible Solution:
I was able to fix it by replacing C: with D: in the build.gradle, so maybe a solution would be to check on various drives to see if devkitPro is there.
Also, using backslash (\) instead of forward slash (/) makes it incompatible with anything that isn't windows.