Displaying 5 results from an estimated 5 matches for "pi_calc".
Did you mean:
pg_call
2008 Feb 29
2
[LLVMdev] llvm-gcc and mips
On Thu, Feb 28, 2008 at 7:26 PM, Mike Stump <mrs at apple.com> wrote:
> On Feb 28, 2008, at 4:03 AM, HyperQuantum wrote:
> > llvm-gcc: error trying to exec 'cc1': execvp: No such file or
> > directory
>
> Do:
>
> find . -name cc1 -print
>
> to find cc1 in the build directory. Then, copy this file by hand to
> to llvm-gcc
2008 Mar 07
0
[LLVMdev] llvm-gcc and mips
On Fri, Feb 29, 2008 at 2:23 PM, HyperQuantum <hyperquantum at gmail.com> wrote:
> At least I got llvm-gcc running again.
Something is still wrong because I cannot get Pi_Calc to run after
compiling it with this semi-cross-compiler, and it worked with the
regular llvm-gcc. I configured the cross compiler with target
mips-unknown-linux-gnu. Should I use another triple or do I need to
hack the llvm-gcc sources some more?
2008 Feb 18
4
[LLVMdev] cross compiling with the C backend
...his is what I do:
(1) compile a program and the libraries it uses (libpng etc.) with llvm-gcc
(2) link the bitcode files with llvm-ld into one file
(3) run "llc -march=c" on the result
(4) compile the resulting C source with the PSP toolchain
It seems to work with a very simple program (Pi_Calc, calculates Pi
and prints it), but it fails when I try it with another program that
is a bit more advanced: the PSP hangs when I run the program.
Am I using the right approach here? I have compiled llvmgcc-4.2-2.2 on
my machine as a native compiler (i686-pc-linux-gnu). Does llvm-gcc
have an impact...
2008 Feb 18
0
[LLVMdev] cross compiling with the C backend
...mpile a program and the libraries it uses (libpng etc.) with llvm-gcc
> (2) link the bitcode files with llvm-ld into one file
> (3) run "llc -march=c" on the result
> (4) compile the resulting C source with the PSP toolchain
>
> It seems to work with a very simple program (Pi_Calc, calculates Pi
> and prints it), but it fails when I try it with another program that
> is a bit more advanced: the PSP hangs when I run the program.
>
> Am I using the right approach here? I have compiled llvmgcc-4.2-2.2 on
> my machine as a native compiler (i686-pc-linux-gnu). Doe...
2008 Mar 07
2
[LLVMdev] llvm-gcc and mips
...ng up somehow your
generated C code.
2008/3/7, HyperQuantum <hyperquantum at gmail.com>:
> On Fri, Feb 29, 2008 at 2:23 PM, HyperQuantum <hyperquantum at gmail.com> wrote:
> > At least I got llvm-gcc running again.
>
>
> Something is still wrong because I cannot get Pi_Calc to run after
> compiling it with this semi-cross-compiler, and it worked with the
> regular llvm-gcc. I configured the cross compiler with target
> mips-unknown-linux-gnu. Should I use another triple or do I need to
> hack the llvm-gcc sources some more?
>
> __________________...