Any ideas on how to setup arm-linux-gcc toolchain in Ubuntu 8.10 so i can start working with codeblocks
Do you have general guideline on what to setup and how to configure C::B
I have setup an installation ... and a compiler profile named ARMLINUXGCC
I try to compile this basic project
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
and i get
-------------- Build: Release in www ---------------
arm-linux-gcc -I/usr/korebot-tools-0.1.2/libkorebot-1.12/build-korebot/include -I/usr/korebot-tools-0.1.2/include -c main.c -o obj/Release/main.o
arm-linux-gcc: installation problem, cannot exec `cpp0': No such file or directory
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings
...next i seacrched for cpp0 n all the directory structure of my pc and founded
user@mypc:$ cd / && sudo find -name cpp0
./usr/korebot-tools-0.1.2/lib/gcc-lib/arm-linux/2.95.3/cpp0
thus added in compiler ARMLINUXGCC settings in additional paths ie
[toolchain executables]
additional paths --> /usr/korebot-tools-0.1.2/lib/gcc-lib/arm-linux/2.95.3
tried to rebuild the project and got
||=== www, Release ===|
/usr/korebot-tools-0.1.2/include/stdio.h|34|stddef.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/bits/types.h|29|stddef.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/_G_config.h|14|stddef.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/wchar.h|48|stddef.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/wchar.h|48|stddef.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/gconv.h|31|stddef.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/libio.h|53|stdarg.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/stdlib.h|33|stddef.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/sys/types.h|146|stddef.h: No such file or directory|
/usr/korebot-tools-0.1.2/include/alloca.h|25|stddef.h: No such file or directory|
||=== Build finished: 10 errors, 0 warnings ===|
what am i missing ?
permissions in /usr directories i created?
is developing in linux not supported
great thanx in advace !