Re[2]: Build libc separately

2012-01-25 Thread Serguey Kuritsin
My requirement is to compile to llvm bitcode not to binary. And I must use llvm 2.8. > On 2012/01/25 17:22, Serguey Kuritsin wrote: > > Thanks! > > > > I've started to explore src/lib/libc/Makefile. It was too easy to > > perform: cd src/lib/libc CC=llvm-gcc AR=llvm-ar NM=llvm-nm LD=llvm-ld >

Re[2]: Build libc separately

2012-01-25 Thread Serguey Kuritsin
Thanks! I've started to explore src/lib/libc/Makefile. It was too easy to perform: cd src/lib/libc CC=llvm-gcc AR=llvm-ar NM=llvm-nm LD=llvm-ld make The rest is bug-fixing in Makefile. > On 2012-01-24, Serguey Kuritsin wrote: > > I just want to learn how to do it. And I know it is possible. I

Re[2]: Build libc separately

2012-01-24 Thread Serguey Kuritsin
I just want to learn how to do it. And I know it is possible. I do not expect extensive learning from someone who will explain me the meaning of every line in every makefile and build system configs. I just want to some starting points. If I fail it will be a good experience too. > I think this