Changeset 14995 in project
- Timestamp:
- 06/14/09 21:57:18 (12 years ago)
- Location:
- chicken/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
chicken/trunk/csc.scm
r14893 r14995 392 392 -R -require-extension NAME require extension and import in compiled 393 393 code 394 -E -extension compile as extension (dynamic or static)395 394 -dll -library compile multiple units into a dynamic 396 395 library -
chicken/trunk/expand.scm
r14799 r14995 49 49 (cond-expand 50 50 ((not debugbuild) 51 (begin 52 (declare 53 (no-bound-checks) 54 (no-procedure-checks)) 55 (define-syntax dd (syntax-rules () ((_ . _) (void)))) 56 (define-syntax dm (syntax-rules () ((_ . _) (void)))))) 51 (declare 52 (no-bound-checks) 53 (no-procedure-checks))) 57 54 (else)) 55 56 (define-syntax dd (syntax-rules () ((_ . _) (void)))) 57 (define-syntax dm (syntax-rules () ((_ . _) (void)))) 58 58 59 59
Note: See TracChangeset
for help on using the changeset viewer.