- 15
- Posts
- 4
- Years
- Seen Sep 6, 2023
I've been trying to install pokefirered but come across this error at sh build.sh
"mv: cannot stat 'tmplibgcc1.a': No such file or directory", I assume, is the big problem here. I thought I had missed a package but I really do think I've installed everything. Needless to say, sh install.sh ../pokefirered would not work without this.
Any help would be appreciated!
Code:
-snip-
for name in _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_tls _call_via_rX; \
do \
echo ${name}; \
cc -E -undef -nostdinc -DL${name} -x assembler-with-cpp -o ${name}.s lib1thumb
.asm; \
bash -c 'echo -e ".text\n\t.align\t2, 0\n"' >> ${name}.s ; \
arm-none-eabi-as -mcpu=arm7tdmi -o ${name}.o ${name}.s; \
rm -f ${name}.s; \
arm-none-eabi-ar -rc tmplibgcc1.a ${name}.o; \
rm -f ${name}.o; \
done
_udivsi3
/bin/sh: line 5: arm-none-eabi-as: command not found
/bin/sh: line 7: arm-none-eabi-ar: command not found
_divsi3
/bin/sh: line 5: arm-none-eabi-as: command not found
/bin/sh: line 7: arm-none-eabi-ar: command not found
_umodsi3
/bin/sh: line 5: arm-none-eabi-as: command not found
/bin/sh: line 7: arm-none-eabi-ar: command not found
_modsi3
/bin/sh: line 5: arm-none-eabi-as: command not found
/bin/sh: line 7: arm-none-eabi-ar: command not found
_dvmd_tls
/bin/sh: line 5: arm-none-eabi-as: command not found
/bin/sh: line 7: arm-none-eabi-ar: command not found
_call_via_rX
/bin/sh: line 5: arm-none-eabi-as: command not found
/bin/sh: line 7: arm-none-eabi-ar: command not found
mv tmplibgcc1.a libgcc1.a
mv: cannot stat 'tmplibgcc1.a': No such file or directory
make: *** [Makefile:36: libgcc1.a] Error 1
make: Leaving directory '/home/Ni/agbcc/libgcc'
"mv: cannot stat 'tmplibgcc1.a': No such file or directory", I assume, is the big problem here. I thought I had missed a package but I really do think I've installed everything. Needless to say, sh install.sh ../pokefirered would not work without this.
Any help would be appreciated!