yosys/libs
Tim 'mithro' Ansell 34c9fbab53 minisat: Only define __STDC_XXX_MACROS if not already defined.
Replace;
 #define __STDC_LIMIT_MACROS
 #define __STDC_FORMAT_MACROS

With
 #ifndef __STDC_LIMIT_MACROS
 #define __STDC_LIMIT_MACROS
 #endif
 #ifndef __STDC_FORMAT_MACROS
 #define __STDC_FORMAT_MACROS
 #endif

This fixes a compile warning if you are defining these macros in your
CXXFLAGS (as some distros do).
2017-11-25 19:48:26 -08:00
..
bigint Moved stand-alone libs to libs/ directory and added libs/subcircuit 2013-02-27 09:32:19 +01:00
ezsat minisat: Only define __STDC_XXX_MACROS if not already defined. 2017-11-25 19:48:26 -08:00
minisat minisat: Only define __STDC_XXX_MACROS if not already defined. 2017-11-25 19:48:26 -08:00
sha1 Compile fix for visual studio 2014-12-11 15:27:38 +01:00
subcircuit subcircuit: Class with virtual methods should have virtual destructor. 2017-11-25 19:48:26 -08:00