aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Update ABC to git rev 6df1396Clifford Wolf2018-05-301-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Force abc to align memory to 8 bytesRobert Ou2018-05-181-1/+1
| | | | | | | | | | Apparently abc has a memory pool implementation that by default returns memory that is unaligned. There is a workaround in the abc makefile that uses uname to look for "arm" specifically and then sets the alignment. However, ARM is not the only platform that requires proper alignment (e.g. emscripten does too). For now, pessimistically force the alignment for 8 bytes all the time (somehow 4 wasn't enough for fixing emscripten despite being approximately a 32-bit platform).
* Force abc to be linked statically and without threads in emscriptenRobert Ou2018-05-181-0/+5
|
* Add options to disable abc's usage of pthreads and readlineRobert Ou2018-05-181-0/+10
|
* Add an option to statically link abc into yosysRobert Ou2018-05-181-4/+18
| | | | This is currently incomplete because the output filter no longer works.
* Makefile: Make abc always use stdint.hRobert Ou2018-05-181-4/+8
|
* Use $(OS) in makefile to check for DarwinClifford Wolf2018-05-131-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Enable building on FreeBSDJohnny Sorocil2018-05-061-1/+17
|
* Update ABC to git rev f23ea8eClifford Wolf2018-04-301-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Improve Makefile error handling for when abc/ is a hg working copyClifford Wolf2018-04-121-0/+3
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Fix build for new ABC location on github, also update ABC to a2d59beClifford Wolf2018-03-271-6/+6
|
* Use Verific hier_tree component for elaborationClifford Wolf2018-03-081-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Add -lz for verific buildsClifford Wolf2018-02-271-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Improve msys2 flags for building abc.William D. Jones2018-02-191-3/+3
|
* Fixed yosys-config for binary distributions with VerificClifford Wolf2018-02-131-3/+11
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Do not create deep backtraces unless in ENABLE_DEBUG modeClifford Wolf2018-02-031-2/+2
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Use "strip -S" instead of "strip -d" for Mac OS X compatibilityClifford Wolf2018-01-191-2/+2
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Strip debug symbols from binaries on installClifford Wolf2018-01-171-1/+12
|
* Update ABC to hg rev 6e3c24b3308aClifford Wolf2018-01-071-1/+1
| | | | Signed-off-by: Clifford Wolf <clifford@clifford.at>
* Use "hg ... --insecure" for cloning/pulling ABCClifford Wolf2017-12-031-2/+2
|
* Update ABC to hg rev 31fc97b0aeedClifford Wolf2017-12-021-1/+1
|
* Add support for editline as replacement for readlineClifford Wolf2017-11-081-0/+6
|
* Add ENABLE_DEBUG config flagClifford Wolf2017-10-251-1/+10
|
* Update ABC to hg rev f6838749f234Clifford Wolf2017-10-251-1/+1
|
* Update ABC to hg rev 6283c5d99b06Clifford Wolf2017-10-111-1/+1
|
* Update ABC to hg rev 0fc1803a77c0Clifford Wolf2017-10-061-1/+1
|
* Update ABC to hg rev cd6984ee82d4Clifford Wolf2017-09-151-2/+2
|
* Add "-undefined dynamic_lookup" to OSX "yosys-config --ldflags"Clifford Wolf2017-08-041-1/+5
|
* makefile: Add the option to use libtermcapRobert Ou2017-07-171-0/+5
|
* Added the test outputs to the clean targetSalvador E. Tropea2017-07-031-0/+8
|
* Update ABC to hg rev efbf7f13ea9eClifford Wolf2017-05-311-1/+1
|
* Enable readline and tcl in mxe buildsClifford Wolf2017-05-171-4/+8
|
* Update ABC to hg rev e79576e10d72Clifford Wolf2017-05-111-1/+1
|
* Update ABC to hg rev 3a95bfa55df7Clifford Wolf2017-02-251-1/+1
|
* Add missing slashes in paths for make uninstallJosh Headapohl2017-02-231-1/+1
| | | | | | | | Running make uninstall used to fail to remove binaries: rm -vf /usr/local/binyosys /usr/local/binyosys-config #...etc Fix Makefile so that it runs a command like this: rm -vf /usr/local/bin/yosys /usr/local/bin/yosys-config #...etc
* Update ABC to hg rev 8da4dc435b9fClifford Wolf2017-02-221-1/+1
|
* Evaluate all the $(shell ...) stuff for CXXFLAGS et al only onceClifford Wolf2017-02-111-3/+3
|
* Make MacOS Makefile stuff more compactClifford Wolf2017-02-111-8/+0
|
* Merge branch 'master' of https://github.com/stv0g/yosys into stv0g-masterClifford Wolf2017-02-111-18/+35
|\
| * Use pkg-config for linking tcl-tkSteffen Vogel2017-02-101-3/+5
| | | | | | | | Both MacPorts and Homebrew have a pkg-config file for TCL. So lets use it.
| * Dont mix Homebrew and MacPorts build optionsSteffen Vogel2017-02-101-2/+1
| |
| * Applied fixes from @joshhead (thanks for your effors!)Steffen Vogel2017-02-091-4/+6
| |
| * Fix compilation on OS X in order to support both MacPorts and HomebrewSteffen Vogel2017-02-071-13/+25
| |
| * Allow standard tools to be overwritten in make invocationSteffen Vogel2017-02-071-3/+3
| |
| * use Homebrew only if installedSteffen Vogel2017-01-311-6/+8
| |
* | Update ABC to hg rev a2fcd1cc61a6Clifford Wolf2017-02-051-1/+1
| |
* | Update ABC to hg rev fe96921e5d50Clifford Wolf2017-02-011-1/+1
|/
* Update ABC to hg id f8cadfe3861fClifford Wolf2017-01-111-3/+3
|
* Updated ABC to hg id 38b26a543f1dClifford Wolf2017-01-081-1/+1
|
* Updated ABC to hg id 55cd83f432c0Clifford Wolf2016-12-311-1/+1
|