aboutsummaryrefslogtreecommitdiffstats
path: root/libs/minisat/00_UPDATE.sh
Commit message (Collapse)AuthorAgeFilesLines
* Add WASI platform support.whitequark2020-04-301-1/+1
| | | | | | | | | | | | This includes the following significant changes: * Patching ezsat and minisat to disable resource limiting code on WASM/WASI, since the POSIX functions they use are unavailable. * Adding a new definition, YOSYS_DISABLE_SPAWN, present if platform does not support spawning subprocesses (i.e. Emscripten or WASI). This definition hides the definition of `run_command()`. * Adding a new Makefile flag, DISABLE_SPAWN, present in the same condition. This flag disables all passes that require spawning subprocesses for their function.
* minisat: Make update script executable.Tim 'mithro' Ansell2017-11-251-0/+0
|
* minisat: Only define __STDC_XXX_MACROS if not already defined.Tim 'mithro' Ansell2017-11-251-2/+2
| | | | | | | | | | | | | | | | | 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).
* Add minisat 00_PATCH_typofixes.patchClifford Wolf2017-03-271-0/+1
|
* Remove use of <fpu_control.h> in minisatClifford Wolf2017-03-271-0/+1
|
* Removed Minisat dependency on zlibClifford Wolf2014-07-251-0/+17