Skip to content

Commit

Permalink
Fix bug with -keep-c option when combined with -exe (Bug #142).
Browse files Browse the repository at this point in the history
  • Loading branch information
feeley committed Jan 24, 2011
1 parent d0bbc06 commit edc5066
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions gsi/main.scm
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
;;;============================================================================ ;;;============================================================================


;;; File: "main.scm", Time-stamp: <2010-11-30 17:01:58 feeley> ;;; File: "main.scm", Time-stamp: <2011-01-24 11:54:13 feeley>


;;; Copyright (c) 1994-2009 by Marc Feeley, All Rights Reserved. ;;; Copyright (c) 1994-2009 by Marc Feeley, All Rights Reserved.


Expand Down Expand Up @@ -386,7 +386,8 @@
#f))) #f)))
(add-obj-file obj-file) (add-obj-file obj-file)
(add-tmp-file obj-file) (add-tmp-file obj-file)
(add-tmp-file gen-c-file)))))) (if (##not (##memq 'keep-c sym-opts))
(add-tmp-file gen-c-file)))))))
(loop2 rest)))))) (loop2 rest))))))


(let* ((flat? (let* ((flat?
Expand Down Expand Up @@ -441,7 +442,7 @@
#f))) #f)))
(add-obj-file obj-link-file) (add-obj-file obj-link-file)
(add-tmp-file obj-link-file) (add-tmp-file obj-link-file)
(if (##not (##memq 'keep-c options)) (if (##not (##memq 'keep-c sym-opts))
(add-tmp-file link-file)))) (add-tmp-file link-file))))
roots)))) roots))))


Expand Down
4 changes: 2 additions & 2 deletions include/stamp.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
* Time stamp of last source code repository commit. * Time stamp of last source code repository commit.
*/ */


#define ___STAMP_YMD 20110122 #define ___STAMP_YMD 20110124
#define ___STAMP_HMS 51102 #define ___STAMP_HMS 183244

0 comments on commit edc5066

Please sign in to comment.