mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
OSX again
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
7ebc6fdd66
commit
cf04bf9959
2 changed files with 4 additions and 7 deletions
|
@ -341,10 +341,6 @@ class DLLComponent(Component):
|
|||
dll_name = name
|
||||
self.dll_name = dll_name
|
||||
self.export_files = export_files
|
||||
new_deps = find_all_deps(name, reexports)
|
||||
for new_dep in new_deps:
|
||||
if not new_dep in reexports:
|
||||
self.deps.append(new_dep)
|
||||
self.reexports = reexports
|
||||
|
||||
def mk_makefile(self, out):
|
||||
|
@ -371,8 +367,9 @@ class DLLComponent(Component):
|
|||
out.write(' ')
|
||||
out.write(obj)
|
||||
for dep in deps:
|
||||
c_dep = _Name2Component[dep]
|
||||
out.write(' %s/%s$(LIB_EXT)' % (c_dep.build_dir, c_dep.name))
|
||||
if not dep in self.reexports:
|
||||
c_dep = _Name2Component[dep]
|
||||
out.write(' %s/%s$(LIB_EXT)' % (c_dep.build_dir, c_dep.name))
|
||||
out.write('\n')
|
||||
out.write('\t$(LINK) $(SLINK_OUT_FLAG)%s $(SLINK_FLAGS)' % dllfile)
|
||||
for obj in objs:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue