• 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.

[Other] DevkitARM not working

  • 3
    Posts
    1
    Years
    • Seen Sep 13, 2023
    I've followed all the steps on installing DevkitARM on mac from here: https://github.com/pret/pokeemerald/blob/master/INSTALL.md#build-pokeemerald trying to build Emerald for my first ever ROM hack attempt. However, when I get to the step that requires the below commands I don't get any response

    export DEVKITPRO=/opt/devkitpro
    echo "export DEVKITPRO=$DEVKITPRO" >> ~/.bashrc
    export DEVKITARM=$DEVKITPRO/devkitARM
    echo "export DEVKITARM=$DEVKITARM" >> ~/.bashrc

    echo "if [ -f ~/.bashrc ]; then . ~/.bashrc; fi" >> ~/.bash_profile

    I have tried entering the 'make' command anyway and I get the below error.

    tools/agbcc/bin/agbcc <flags> -o build/emerald/src/AgbRfu_LinkManager.o src/AgbRfu_LinkManager.c
    /bin/bash: tools/agbcc/bin/agbcc: No such file or directory
    In file included from src/AgbRfu_LinkManager.c:1:
    include/global.h:4:10: fatal error: string.h: No such file or directory
    4 | #include <string.h>
    | ^~~~~~~~~~
    compilation terminated.
    make: *** [build/emerald/src/AgbRfu_LinkManager.o] Error 127
    make: *** Deleting file `build/emerald/src/AgbRfu_LinkManager.o'

    Any help on what I'm doing wrong would be greatly appreciated.
     
    Not sure why the Aipom and Cydaquil are there. Aipom should be a :1 and Cydaquil should be :4
     
    Last edited:
    I've followed all the steps on installing DevkitARM on mac from here: https://github.com/pret/pokeemerald/blob/master/INSTALL.md#build-pokeemerald trying to build Emerald for my first ever ROM hack attempt. However, when I get to the step that requires the below commands I don't get any response

    export DEVKITPRO=/opt/devkitpro
    echo "export DEVKITPRO=$DEVKITPRO" >> ~/.bashrc
    export DEVKITARM=$DEVKITPRO/devkitARM
    echo "export DEVKITARM=$DEVKITARM" >> ~/.bashrc

    echo "if [ -f ~/.bashrc ]; then . ~/.bashrc; fi" >> ~/.bash_profile

    I have tried entering the 'make' command anyway and I get the below error.

    tools/agbcc/bin/agbcc <flags> -o build/emerald/src/AgbRfu_LinkManager.o src/AgbRfu_LinkManager.c
    /bin/bash: tools/agbcc/bin/agbcc: No such file or directory
    In file included from src/AgbRfu_LinkManager.c:1:
    include/global.h:4:10: fatal error: string.h: No such file or directory
    4 | #include <string.h>
    | ^~~~~~~~~~
    compilation terminated.
    make: *** [build/emerald/src/AgbRfu_LinkManager.o] Error 127
    make: *** Deleting file `build/emerald/src/AgbRfu_LinkManager.o'

    Any help on what I'm doing wrong would be greatly appreciated.

    Those commands aren't supposed to print anything so no response is to be expected.

    The error on make would seem to indicate that you haven't installed agbcc.
     
    Back
    Top