Change 18740 by sky@sky-tibook on 2003/02/18 06:33:57 Re: -Os for Darwin why? From: [EMAIL PROTECTED] Date: tis feb 18, 2003 04:14:03 Europe/Stockholm Message-Id: <[EMAIL PROTECTED]>
Affected files ... ... //depot/perl/hints/darwin.sh#28 edit Differences ... ==== //depot/perl/hints/darwin.sh#28 (text) ==== Index: perl/hints/darwin.sh --- perl/hints/darwin.sh#27~18406~ Fri Jan 3 00:23:16 2003 +++ perl/hints/darwin.sh Mon Feb 17 22:33:57 2003 @@ -52,7 +52,11 @@ # nm works. usenm='true'; -# Optimize. +# Optimizing for size also mean less resident memory usage on the part +# of Perl. Apple asserts that this is a more important optimization than +# saving on CPU cycles. Given that memory speed has not increased at +# pace with CPU speed over time (on any platform), this is probably a +# reasonable assertion. if [ -z "${optimize}" ]; then case "$osvers" in [12345].*) optimize='-O3' ;; End of Patch.