Displaying 2 results from an estimated 2 matches for "prpad".
Did you mean:
pread
2010 Feb 03
2
[LLVMdev] how to get -ast-print to work?
I have clang from 2010-01-22 installed.
I'm interested in using the AST, but:
marko at prpad:tmp% clang -cc1 col.c -ast-print
gcc: unrecognized option '-cc1'
/tmp/cc-15456a.s: Assembler messages:
/tmp/cc-15456a.s:4: Warning: unterminated string; newline inserted
/tmp/cc-15456a.s:5: Warning: unterminated string; newline inserted
gcc: unrecognized option '-cc1'
How can I use...
2010 Feb 03
0
[LLVMdev] how to get -ast-print to work?
On Wed, 03 Feb 2010 09:13:51 -0400, Marko Schütz <MarkoSchuetz at web.de>
wrote:
> I have clang from 2010-01-22 installed.
First off, Clang questions should go to cfe-dev.
>
> I'm interested in using the AST, but:
>
> marko at prpad:tmp% clang -cc1 col.c -ast-print
> gcc: unrecognized option '-cc1'
Why is gcc interpreting command line arguments for clang? Do you have an
alias or symlink somewhere?
% which clang
% file `which clang`
Sebastian