Open GoogleCodeExporter opened 9 years ago
Here's the clue that finally tipped me off:
http://stackoverflow.com/questions/10243018/inline-function-undefined-symbols-er
ror
Change those functions from "inline" to "static inline" in
SRC/simulate_blif.{c,h} and you should be good to go.
Original comment by BenTH...@gmail.com
on 25 Sep 2014 at 2:06
An even easier approach (doesn't require source modification) is to build using
"-std=gnu89" as a compiler option. See:
http://clang.llvm.org/compatibility.html#inline
To do this, add "-std=gnu89" to the CFLAGS in the Makefile for ODIN_II,
abc_with_bb_support, and ace2.
You'll also have to add "-Wno-error=return-type" to CFLAGS for
abc_with_bb_support in order to fix a return type mismatch within the espresso
code in ABC.
Original comment by BenTH...@gmail.com
on 25 Sep 2014 at 5:43
Original issue reported on code.google.com by
kcleung....@gmail.com
on 23 May 2014 at 10:40