comparison Makefile.am @ 32530:23b20195a0a4 stable

restore option to disable bytecode evaluator removed in cset 6efda6ed0d17 * configure.ac: Restore --disable-bytecode-evaluator option and associated variables, renamed from --disable-vm-evaluator. * Makefile.am, test/Makefile.am (check-bytecode-evaluator): Rename target from check-vm. Now conditional on AMCOND_ENABLE_BYTECODE_EVALUATOR. * mk-octave-config-h.sh: Copy OCTAVE_ENABLE_BYTECODE_EVALUATOR macro. * toplev.cc (F__octave_config_info__): Include ENABLE_BYTECODE_EVALUATOR in the struct.
author John W. Eaton <jwe@octave.org>
date Tue, 28 Nov 2023 17:16:51 -0500
parents 6efda6ed0d17
children f561b6a31e02 b31991b5c361
comparison
equal deleted inserted replaced
32528:c823e7c9772b 32530:23b20195a0a4
347 347
348 run-octave: run-octave.in build-aux/subst-script-vals.sh 348 run-octave: run-octave.in build-aux/subst-script-vals.sh
349 $(AM_V_GEN)$(call simple-filter-rule,build-aux/subst-script-vals.sh) && \ 349 $(AM_V_GEN)$(call simple-filter-rule,build-aux/subst-script-vals.sh) && \
350 chmod a+rx $@ 350 chmod a+rx $@
351 351
352 check-vm: 352 if AMCOND_ENABLE_BYTECODE_EVALUATOR
353 $(MAKE) -C test check-vm 353 check-bytecode-evaluator:
354 $(MAKE) -C test check-bytecode-evaluator
355 endif
354 356
355 octave-config.h: config.h build-aux/mk-octave-config-h.sh 357 octave-config.h: config.h build-aux/mk-octave-config-h.sh
356 $(AM_V_GEN)$(SHELL) $(srcdir)/build-aux/mk-octave-config-h.sh $< > $@-t && \ 358 $(AM_V_GEN)$(SHELL) $(srcdir)/build-aux/mk-octave-config-h.sh $< > $@-t && \
357 $(simple_move_if_change_rule) 359 $(simple_move_if_change_rule)
358 360