diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2022-02-07 16:36:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 16:36:43 +0100 |
commit | d7f7227ce8edc4e4e81f8885a26e40abf474e7a4 (patch) | |
tree | 5fbc25d817e756d3290b8a1b3078c72b8d7c768b /libs/fst/config.h | |
parent | 9c93668954fe2ec7aa1fb64573f6e9bf97824b60 (diff) | |
parent | c0a156bcb43bb0bb42eb3f2d94c12cda9ca5ee37 (diff) | |
download | yosys-d7f7227ce8edc4e4e81f8885a26e40abf474e7a4.tar.gz yosys-d7f7227ce8edc4e4e81f8885a26e40abf474e7a4.tar.bz2 yosys-d7f7227ce8edc4e4e81f8885a26e40abf474e7a4.zip |
Merge pull request #3185 from YosysHQ/micko/co_sim
Add co-simulation in sim pass
Diffstat (limited to 'libs/fst/config.h')
-rw-r--r-- | libs/fst/config.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/libs/fst/config.h b/libs/fst/config.h new file mode 100644 index 000000000..0598fb8c5 --- /dev/null +++ b/libs/fst/config.h @@ -0,0 +1,27 @@ +/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix). + */ +#define HAVE_ALLOCA_H 1 + +/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ +#define HAVE_FSEEKO 1 + +/* Define to 1 if you have the `pthread' library (-lpthread). */ +#define HAVE_LIBPTHREAD 1 + +/* Define to 1 if you have the `realpath' function. */ +#define HAVE_REALPATH 1 + +#if defined(__MINGW32__) +#undef HAVE_ALLOCA_H +#undef HAVE_REALPATH +#endif +#if defined(_MSC_VER) +#undef HAVE_ALLOCA_H +#undef HAVE_REALPATH +#undef HAVE_LIBPTHREAD +#undef HAVE_FSEEKO +#endif + +# ifndef __STDC_FORMAT_MACROS +# define __STDC_FORMAT_MACROS 1 +# endif |