~ chicken-core (chicken-5) a1b972dfe1d9cc238b5fcddc577d357c355d3bbe
commit a1b972dfe1d9cc238b5fcddc577d357c355d3bbe Author: Peter Bex <peter.bex@xs4all.nl> AuthorDate: Fri Oct 5 21:41:54 2012 +0200 Commit: Peter Bex <peter.bex@xs4all.nl> CommitDate: Fri Oct 5 21:41:54 2012 +0200 standard-extension uses -O3, not -O2, which can make a big difference diff --git a/manual/Extensions b/manual/Extensions index e5350d7b..5794505d 100644 --- a/manual/Extensions +++ b/manual/Extensions @@ -165,13 +165,13 @@ files in {{FILELIST}} to executable (for installing shell-scripts). A convenience procedure that combines the compilation and installation of a simple single-file extension. This is roughly equivalent to: - (compile -s -O2 -d1 ID.scm -j ID) - (compile -s -O2 -d0 ID.import.scm) + (compile -s -O3 -d1 ID.scm -j ID) + (compile -s -O3 -d0 ID.import.scm) (install-extension 'ID '("ID.so" "ID.import.so") - '((version 1.0) + '((version 0.1) ... `INFO' ... ))Trap