Hi, so I'm wanting to use fasmg from msys2 mingw64, I looked at the `fasm2.cmd` file to see how I could make .sh equivalents for my build scripts, but I ran into a bit of an issue. I also have open watcom installed and it expects its include folders to be listed under an "INCLUDE" environment variable (all uppercase) while I assume fasm2 expects them in "include" all lowercase. If I echo either of them they show the correct path. But when I try to add `-iInclude('fasm2.inc')` to my build.sh script I get this error:
Error: source file 'C:/programming/gamedev/_engines/dosbox/dos/opwatcom/h/fasm2.inc' not found
It seems like fasmg is using my "INCLUDE" variable and not "include" like the fasm2.cmd would imply it expects. I don't think it's a case insensitivity problem on the part of the terminal since I can echo both of them and get the appropriate paths back for each one, it seems more like a "bug" in fasmg since I'm exporting my fasm include variable AFTER the open watcom one in my .bash_profile so there shouldn't be any way the open watcom one is overriding the fasm one. Is it a windows limitation and msys2 just isn't effected by it?