• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Tool] Error 127 while doing an early test compile.

  • 1
    Posts
    6
    Years
    • Seen Feb 18, 2023
    I changed the mart data and I moved a route from Kanto over to Johto and then went to compile to test if I was moving the maps around correctly, the result was this message.

    rgbasm -o rgbdscheck.o rgbdscheck.asm
    rgbgfx -o gfx/sgb/sgb_border.2bpp gfx/sgb/sgb_border.png
    make: rgbasm: Command not found
    Makefile:123: recipe for target 'rgbdscheck.o' failed
    make: *** [rgbdscheck.o] Error 127
    make: *** Waiting for unfinished jobs....
    make: rgbgfx: Command not found
    Makefile:312: recipe for target 'gfx/sgb/sgb_border.2bpp' failed
    make: *** [gfx/sgb/sgb_border.2bpp] Error 127

    As far as I can tell I have not fiddled with any of that. If anyone has insight then I would like to hear it, thank you.
     
    I changed the mart data and I moved a route from Kanto over to Johto and then went to compile to test if I was moving the maps around correctly, the result was this message.

    rgbasm -o rgbdscheck.o rgbdscheck.asm
    rgbgfx -o gfx/sgb/sgb_border.2bpp gfx/sgb/sgb_border.png
    make: rgbasm: Command not found
    Makefile:123: recipe for target 'rgbdscheck.o' failed
    make: *** [rgbdscheck.o] Error 127
    make: *** Waiting for unfinished jobs....
    make: rgbgfx: Command not found
    Makefile:312: recipe for target 'gfx/sgb/sgb_border.2bpp' failed
    make: *** [gfx/sgb/sgb_border.2bpp] Error 127

    As far as I can tell I have not fiddled with any of that. If anyone has insight then I would like to hear it, thank you.
    The error you want to focus on here is:
    make: rgbgfx: Command not found
    Which is telling you that your terminal can't find rgbgfx, one of the tools that comes with rgbds.
    You either set it up incorrectly, or didn't set it up at all.
     
    Back
    Top