summaryrefslogtreecommitdiff
path: root/uconfig.sh
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2011-03-22 16:30:02 +0000
committerNicholas Clark <nick@ccl4.org>2011-03-28 10:21:48 +0100
commita1e1310575d1fe6dee46e6651b54012ec193dc18 (patch)
treed95c3cfc06b5e92b5d42966938fddb29eb66ea22 /uconfig.sh
parent23ca90984cf0d671457c13e643adec366cc887dc (diff)
downloadperl-a1e1310575d1fe6dee46e6651b54012ec193dc18.tar.gz
Default microperl to no optimisation.
Previously it was -O2, which is potentially a gcc-ism. -Os also has the potential to be "portability challenged". Whilst -O should work everywhere, as microperl is intended as a least-assumptions bootstrapping approach, it seems best to make no assumptions about the compiler's optimiser.
Diffstat (limited to 'uconfig.sh')
-rw-r--r--uconfig.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/uconfig.sh b/uconfig.sh
index a4f579e676..15757fc43b 100644
--- a/uconfig.sh
+++ b/uconfig.sh
@@ -665,7 +665,7 @@ nvtype='double'
o_nonblock='O_NONBLOCK'
obj_ext='.o'
old_pthread_create_joinable=''
-optimize='-O2'
+optimize=''
orderlib='false'
osname='unknown'
osvers='unknown'