On Fri, Jul 21, 2006 at 03:04:06PM -0400, Mr. Shawn H. Corey wrote:
> Determining if your C compiler is actually gcc.........................yes.
> Determining if your C compiler is actually Visual C++...................no.
> Enabling optimization...................................................no.
> 
> The first two makes sense given my system:
> <http://www.magma.ca/~shawnhcorey/2006-07/1153500473.html> but what does
> the last mean? Does it mean only the C compiler or everything? Does it
> means it has disabled all optimization -O0 or using the default (which I
> think is -O1)?
It means that no optimization is enabled and debugging information is
embedded in the object files.  It's virtually impossible to debug
optimized code and it can dramatically increase compilation times (there
are still quadratic algorithms in most compilers!). So it's reasonable to
default to no optimization when a project is under heavy development.
If you need the speed, pass --optimize to configure.

> Second:
> 
> Determining if your platform supports GMP...............................no.
> Determining if your platform supports readline..........................no.
> Determining if your platform supports gdbm..............................no.
> 
> How important are these? Parrot compiles without them but am I missing
> something?

Those are needed for 'Big' math support, readline, and hash files.  It's
pretty subjective as to whether your missing that functionality or not.

Cheers,

-J

--

Attachment: pgp1WB9vHbv78.pgp
Description: PGP signature

Reply via email to