mirror of
https://github.com/YosysHQ/abc.git
synced 2026-08-30 01:29:01 +02:00
pyabc: adapt build to recent changes in the rest of ABC
This commit is contained in:
+2
-2
@@ -22,8 +22,8 @@
|
||||
|
||||
%{
|
||||
|
||||
#include <main.h>
|
||||
#include <utilCex.h>
|
||||
#include <src/base/main/main.h>
|
||||
#include <src/misc/util/utilCex.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <signal.h>
|
||||
|
||||
+1
-20
@@ -4,25 +4,6 @@ from distutils.core import setup, Extension
|
||||
from distutils.sysconfig import get_config_vars
|
||||
from distutils import util
|
||||
|
||||
include_dirs = [
|
||||
'../aig/hop',
|
||||
'../aig/gia',
|
||||
'../aig/mem',
|
||||
'../base/abc',
|
||||
'../base/cmd',
|
||||
'../base/io',
|
||||
'../base/main',
|
||||
'../bdd/cudd',
|
||||
'../bdd/epd',
|
||||
'../bdd/mtr',
|
||||
'../misc/extra',
|
||||
'../misc/nm',
|
||||
'../misc/st',
|
||||
'../misc/util',
|
||||
'../misc/vec',
|
||||
'../misc/hash',
|
||||
]
|
||||
|
||||
define_macros = []
|
||||
libraries = []
|
||||
library_dirs = []
|
||||
@@ -54,7 +35,7 @@ ext = Extension(
|
||||
'_pyabc',
|
||||
src_file,
|
||||
define_macros=define_macros,
|
||||
include_dirs = include_dirs,
|
||||
include_dirs = ["../.."],
|
||||
library_dirs=library_dirs,
|
||||
libraries=libraries
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user