File tree 3 files changed +14
-10
lines changed
3 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 220
220
&aux (identifiers (make-source " .identifiers" :code ))
221
221
(outputs (list (make-source " TAGS" :code ))))
222
222
(when (and *variant-default*
223
+ (not (reproducible-build configuration))
223
224
(or (etags configuration)
224
225
(ctags configuration)))
225
226
(ninja :write-build output-stream :tags
417
418
(when (member :cando (extensions configuration))
418
419
(list cleap-symlink))
419
420
(when (and *variant-default*
421
+ (not (reproducible-build configuration))
420
422
(or (etags configuration)
421
423
(ctags configuration)))
422
424
(list " tags" )))
Original file line number Diff line number Diff line change 157
157
158
158
(defmethod configure-unit (configuration (unit (eql :etags )))
159
159
" Find the etags binary."
160
- (with-accessors ((etags etags))
161
- configuration
162
- (message :emph " Configuring etags" )
163
- (setf etags (configure-program " etags"
164
- (or etags (list #P " etags" ))))))
160
+ (unless (reproducible-build configuration)
161
+ (with-accessors ((etags etags))
162
+ configuration
163
+ (message :emph " Configuring etags" )
164
+ (setf etags (configure-program " etags"
165
+ (or etags (list #P " etags" )))))))
165
166
166
167
(defmethod configure-unit (configuration (unit (eql :ctags )))
167
168
" Find the ctags binary."
168
- (with-accessors ((ctags ctags))
169
- configuration
170
- (message :emph " Configuring ctags" )
171
- (setf ctags (configure-program " ctags" ctags :match " Ctags" ))))
169
+ (unless (reproducible-build configuration)
170
+ (with-accessors ((ctags ctags))
171
+ configuration
172
+ (message :emph " Configuring ctags" )
173
+ (setf ctags (configure-program " ctags" ctags :match " Ctags" )))))
172
174
173
175
(defmethod configure-unit (configuration (unit (eql :xcode ))
174
176
&aux (env (uiop :getenv-absolute-directory " XCODE_SDK" ))
Original file line number Diff line number Diff line change @@ -579,7 +579,7 @@ returns with NIL."
579
579
((address :initarg :address :reader memory-condition-address))
580
580
(:REPORT
581
581
(lambda (condition stream )
582
- (format stream " Segmentation fault. Attempted to access resticted memory address #x~x .
582
+ (format stream " Segmentation fault. Attempted to access restricted memory address #x~x .
583
583
584
584
This is due either to a problem in foreign code (e.g., C++), or a bug in Clasp itself."
585
585
(memory-condition-address condition )))))
You can’t perform that action at this time.
0 commit comments