File tree Expand file tree Collapse file tree 7 files changed +9
-5
lines changed Expand file tree Collapse file tree 7 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 67
67
os : macOS-11
68
68
compiler : xcode
69
69
version : " 12.4"
70
- toxcmd : " base Xcode"
70
+ toxcmd : " base -- Xcode"
71
71
72
72
steps :
73
73
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change @@ -85,12 +85,14 @@ abc_libabc_add_sources(
85
85
giaCSat3.c
86
86
giaEra2.c
87
87
giaIff.c
88
+ giaTranStoch.c
88
89
giaSpeedup.c
89
90
giaAiger.c
90
91
gia.c
91
92
giaDfs.c
92
93
giaShrink7.c
93
94
giaMem.c
95
+ giaTransduction.cpp
94
96
giaSupMin.c
95
97
giaStoch.c
96
98
giaJf.c
Original file line number Diff line number Diff line change 31
31
32
32
#ifdef ABC_USE_PTHREADS
33
33
34
- #ifdef _WIN32
34
+ #if (defined( _WIN32 ) && !defined( __MINGW32__ ))
35
35
#include "../lib/pthread.h"
36
36
#else
37
37
#include <pthread.h>
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ abc_libabc_add_sources(
3
3
SOURCES
4
4
abcFx.c
5
5
abcLutmin.c
6
+ abcOrchestration.c
6
7
abcMap.c
7
8
abcExtract.c
8
9
abcBm.c
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ abc_libabc_add_sources(
13
13
ioWriteVerilog.c
14
14
ioReadPlaMo.c
15
15
ioWritePla.c
16
+ ioWriteEdgelist.c
16
17
ioWriteBaf.c
17
18
ioWriteBench.c
18
19
ioReadEdif.c
Original file line number Diff line number Diff line change 25
25
26
26
#ifdef ABC_USE_PTHREADS
27
27
28
- #ifdef _WIN32
28
+ #if (defined( _WIN32 ) && !defined( __MINGW32__ ))
29
29
#include "../lib/pthread.h"
30
30
#else
31
31
#include <pthread.h>
Original file line number Diff line number Diff line change @@ -74,10 +74,10 @@ commands =
74
74
# eg: CC=gcc CXX=g++ tox -e demo
75
75
demo: bash -c ' $CC {posargs} -Wall -c src/demo.c -o demo.o'
76
76
demo: bash -c ' $CXX -o demo demo.o libabc.a -lm -ldl -lreadline -lpthread'
77
- demo: ./demo i10.aig
77
+ demo: bash -c ' ./demo i10.aig'
78
78
{abc,soname,tests}: bash -c ' ls -lh *abc* demo || true'
79
79
base: bash -c ' cmake -G {posargs:"Ninja"} -DABC_USE_NAMESPACE=$ABC_USE_NAMESPACE -DCMAKE_INSTALL_PREFIX=$PREFIX -S . -B build'
80
- base: cmake --build build --target install
80
+ base: cmake -j $(nproc) - -build build --target install
81
81
build: bash -c ' cmake -G {posargs:"Unix Makefiles"} -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DABC_USE_NAMESPACE=$ABC_USE_NAMESPACE -DABC_ENABLE_LTO=ON -DBUILD_SHARED_LIBS=ON -DABC_USE_SONAME=$ABC_USE_SONAME -DCMAKE_INSTALL_PREFIX=$PREFIX ..'
82
82
clang: bash -c ' cmake -G {posargs:"Unix Makefiles"} -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DABC_USE_NAMESPACE=$ABC_USE_NAMESPACE -DCOVERAGE_BUILD=ON -DBUILD_SHARED_LIBS=OFF ..'
83
83
{build}: bash -c ' cmake --build . -j $(nproc)'
You can’t perform that action at this time.
0 commit comments