Hi. I'd like to understand the goals. Is the idea that after doing . env.sh so that 6c is in my path I can then build normal Linux software?
I tried this with GNU awk (gawk), and because of the additional binaries in the bin, I could not even run configure. So I tried running configure normally and then running make CC=6c but I got nowhere.
I then tried compiling a standalone program:
$ cat /tmp/hello.c
#include <stdio.h>
int main(void)
{
printf("hello, world!\n");
return 0;
}
$ 6c /tmp/hello.c -o /tmp/hello
/tmp/hello.c:2 6c: No such file or directory: stdio.h
Am I doing something wrong, or are things just not quite fully baked? Thanks.
Hi. I'd like to understand the goals. Is the idea that after doing
. env.shso that6cis in my path I can then build normal Linux software?I tried this with GNU awk (
gawk), and because of the additional binaries in the bin, I could not even runconfigure. So I tried runningconfigurenormally and then runningmake CC=6cbut I got nowhere.I then tried compiling a standalone program:
Am I doing something wrong, or are things just not quite fully baked? Thanks.