I download and tried it today.

It compiles my project but "suncc" is even slower then "gcc" which is famous for its leisureliness. I just -xO1 which i thought should do no optimizations. I have a lot of inline declared C functions. Is there a way to disable the inlining or anything else to make it compile faster.

link|improve this question

65% accept rate
feedback

1 Answer

up vote 1 down vote accepted

-xO1 does basic optimizations. According to the Sun documentation:

 On x86 platforms:

      -xO1 Preloads arguments from memory, cross-jumping
           (tail-merging), as well as the single pass of the
           default optimization.

If you don't want any optimization, remove any -xOn options.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.