~ chicken-core (chicken-5) c3ac6b85dfc171ccb29a57805c967e66d081b3b3
commit c3ac6b85dfc171ccb29a57805c967e66d081b3b3
Author: felix <felix@y.(none)>
AuthorDate: Wed Feb 17 16:57:45 2010 +0100
Commit: felix <felix@y.(none)>
CommitDate: Wed Feb 17 16:57:45 2010 +0100
undocd OPTIMIZE_FOR_SPEED; forgot scan-input-lines in utils.import.scm
diff --git a/README b/README
index f94442be..80cfd1f8 100644
--- a/README
+++ b/README
@@ -124,18 +124,6 @@
option you can still enable symbol GC at runtime by passing
the `-:w' runtime option when running the program.
- OPTIMIZE_FOR_SPEED=1
- Use C optimization options that prefer speed over size. For
- the GNU C compiler this will currently select "-O3" (the
- default is "-Os"). You can also se
- C_COMPILER_OPTIMIZATION_OPTIONS (see below) to have more
- control over the options given to the C compiler.
-
- Note: there have been reports that newer versions of gcc (4.4???)
- generate incorrect code when given "-O3". It is therefore
- recommended not to use OPTIMIZE_FOR_SPEED if your gcc version
- is 4.4 or higher.
-
EXTRA_CHICKEN_OPTIONS=...
Additional options that should be passed to `chicken' when
building the system.
diff --git a/utils.import.scm b/utils.import.scm
index 89c49d5a..24c710f6 100644
--- a/utils.import.scm
+++ b/utils.import.scm
@@ -29,4 +29,5 @@
'(read-all
system*
qs
- compile-file))
+ compile-file
+ scan-input-lines))
Trap