Re: Checking in on a Broken Math Resource Link on Your Site

2012-11-08 Thread Jonathan Wakely
On 11/07/12 21:20, Alexandra Sawyer wrote: > > I've reported a broken link on your site > gcc.gnu.org/ml/gcc-help/1999-q3n/msg00261.html that links to > http://www.cs.unb.ca/~alopez-o/math-faq/math-faq.html and haven't > heard back, so I just wanted to verify whether you're the right > person to co

Re: Calling compiler from C program...

2012-11-08 Thread Basile Starynkevitch
On Thu, Nov 08, 2012 at 05:41:04PM +0100, Johann Klammer wrote: > Hello, > Some compilers feature function call interfaces for on-the-fly > compilation (C# and lcc). And most importantly, LLVM/Clang. (And also tinycc). LLVM is mostly a library to generate quite good machine code from some interna

Re: Checking in on a Broken Math Resource Link on Your Site

2012-11-08 Thread Andrew Haley
On 11/07/12 21:20, Alexandra Sawyer wrote: > I've reported a broken link on your site > gcc.gnu.org/ml/gcc-help/1999-q3n/msg00261.html that links to > http://www.cs.unb.ca/~alopez-o/math-faq/math-faq.html and haven't > heard back, so I just wanted to verify whether you're the right > person to con

Calling compiler from C program...

2012-11-08 Thread Johann Klammer
Hello, Some compilers feature function call interfaces for on-the-fly compilation (C# and lcc). Now I wonder if this is possible with gcc. Is there a documented/stable interface for compiling snippets of C code programatically from inside a C program? If not, how much work would it involve? Wou

Re: New GCC takes 19x as long to compile my program (compared to old GCC), plus void** patch suggestion

2012-11-08 Thread Anthony Foiani
[Apologies for reviving a long-dead thread, but in case it piques the interest of someone who has better knowledge of gcc internals...] Elmar Krieger writes: > For example, I got a huge slowdown also with this compiler: > > gcc44 (GCC) 4.4.6 20110731 (Red Hat 4.4.6-3) > Copyright (C) 2010 Free

about preprocessed code

2012-11-08 Thread Alberto Lozano Alelu
Hello. In my plugin to analyze C++ code, I would like to detect elements (classes, methods, statements,...) that have been generated by preprocess with expansion of macros Is it possible? Can I get this information with TREE api? Thanks in advance