diff options
author | Mike Frysinger <vapier@gentoo.org> | 2020-12-09 22:26:30 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-04-03 16:19:16 -0400 |
commit | 26da232cbd6dd920da9521e508e42d1a46180ab4 (patch) | |
tree | 76451bdc21196c61c8c36787c74239660437b777 /sim/example-synacor/configure.ac | |
parent | a389375f5b5fb67acdda6be028526ac44df2fbff (diff) | |
download | binutils-26da232cbd6dd920da9521e508e42d1a46180ab4.zip binutils-26da232cbd6dd920da9521e508e42d1a46180ab4.tar.gz binutils-26da232cbd6dd920da9521e508e42d1a46180ab4.tar.bz2 |
sim: example-synacor: a simple implementation for reference
Provide a simple example simulator for people porting to new targets
to use as a reference. This one has the advantage of being used by
people and having a fun program available for it.
It doesn't require a special target -- the example simulators can be
built for any existing port.
Diffstat (limited to 'sim/example-synacor/configure.ac')
-rw-r--r-- | sim/example-synacor/configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sim/example-synacor/configure.ac b/sim/example-synacor/configure.ac new file mode 100644 index 0000000..13b3111 --- /dev/null +++ b/sim/example-synacor/configure.ac @@ -0,0 +1,10 @@ +dnl Process this file with autoconf to produce a configure script. +AC_INIT(Makefile.in) +AC_CONFIG_MACRO_DIRS([../m4 ../.. ../../config]) + +SIM_AC_COMMON + +SIM_AC_OPTION_ENDIAN(LITTLE) +SIM_AC_OPTION_ALIGNMENT(STRICT_ALIGNMENT,STRICT_ALIGNMENT) + +SIM_AC_OUTPUT |