![]() |
Compiling THC-900 on Linux? - Printable Version +- Freeplaytech Forum (https://forum.freeplaytech.com) +-- Forum: Neo Geo Pocket (https://forum.freeplaytech.com/forumdisplay.php?fid=1) +--- Forum: Software Development (https://forum.freeplaytech.com/forumdisplay.php?fid=4) +--- Thread: Compiling THC-900 on Linux? (/showthread.php?tid=5289) |
Compiling THC-900 on Linux? - KeiDash - 12-27-2021 Hi everyone. I've never seen it before but, it's posible compile a ngp homebrew on linux? I know that the current compiler for toshiba TCH 900 it's only for Windows systems, but I've holydays and I've my linux laptop. I'm thinking about this improvement for linux developers As a developer, I think that to do it possible, we need the compiler source, but, I'm not a high linux user and I don't know the possibilities like "linux subsytem on Windows" Thanks RE: Compiling THC-900 on Linux? - winteriscoming - 12-28-2021 Does the Toshiba compiler run in Wine? It seems like that might be an option. I don't think it's open source, so you won't likely be able to compile it to run natively in Linux. RE: Compiling THC-900 on Linux? - KeiDash - 12-28-2021 (12-28-2021, 05:01 AM)winteriscoming Wrote: Does the Toshiba compiler run in Wine? It seems like that might be an option. Well, in a first try, I had move all /BIN files from T900 directory to my .c project path. Then, chaging the make file adding a wine command for each .exe file, it works it. Code: .SUFFIXES: .c .asm .rel .abs Thanks!! RE: Compiling THC-900 on Linux? - sodthor - 12-29-2021 (12-28-2021, 07:57 AM)KeiDash Wrote: Well, in a first try, I had move all /BIN files from T900 directory to my .c project path. Then, chaging the make file adding a wine command for each .exe file, it works it. If you set the THOME environment variable (like in windows but with the unix path) you won't have to copy the bin. I added the line below to my .bashrc file Code: export THOME=/home/thor/ngpcdev/T900 RE: Compiling THC-900 on Linux? - KeiDash - 12-29-2021 Good idea Thor, now I can compile without copy all files on the same directory. I forgot that I can use environment paths to do it xD |