Changeset 49ce636


Ignore:
Timestamp:
Dec 18, 2020, 1:02:19 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
751e2eb
Parents:
720b1a9
Message:

Added Rust cargo file to simplify generation of rust benchmarks

Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • benchmark/Makefile.am

    r720b1a9 r49ce636  
    522522size-cfa$(EXEEXT):
    523523        $(BENCH_V_CFA)$(CFACOMPILE) $(srcdir)/size/size.cfa
     524
     525## =========================================================================================================
     526
     527%-tokio$(EXEEXT): $(srcdir)/readyQ/%.rs
     528        cd $(builddir) && cargo build --release
     529        cp $(builddir)/target/release/$(basename $@) $@
  • configure.ac

    r720b1a9 r49ce636  
    295295# Some of our makefile don't need to be distributed
    296296AM_CONDITIONAL([CFORALL_DISTRIBUTE], [test -e $TOP_SRCDIR/autogen.sh])
    297 AM_COND_IF([CFORALL_DISTRIBUTE],
    298         [AC_CONFIG_FILES([
     297AM_COND_IF([CFORALL_DISTRIBUTE], [
     298        AC_CONFIG_FILES([
    299299                longrun_tests/Makefile
    300300                benchmark/Makefile
     
    302302                tools/Makefile
    303303                tools/prettyprinter/Makefile
    304                 ])])
     304        ])
     305
     306        AC_OUTPUT(benchmark/Cargo.toml)
     307])
    305308
    306309AC_CONFIG_LINKS([tests/test.py:tests/test.py])
Note: See TracChangeset for help on using the changeset viewer.