mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
porting to windows
This commit is contained in:
parent
78848f3ddd
commit
28266786f3
7 changed files with 56 additions and 46 deletions
|
@ -909,6 +909,7 @@ class ExeComponent(Component):
|
|||
for dep in deps:
|
||||
c_dep = get_component(dep)
|
||||
out.write(' ' + c_dep.get_link_name())
|
||||
out.write(' ' + FOCI2LIB)
|
||||
out.write(' $(LINK_EXTRA_FLAGS)\n')
|
||||
out.write('%s: %s\n\n' % (self.name, exefile))
|
||||
|
||||
|
@ -1012,6 +1013,7 @@ class DLLComponent(Component):
|
|||
if not dep in self.reexports:
|
||||
c_dep = get_component(dep)
|
||||
out.write(' ' + c_dep.get_link_name())
|
||||
out.write(' ' + FOCI2LIB)
|
||||
out.write(' $(SLINK_EXTRA_FLAGS)')
|
||||
if IS_WINDOWS:
|
||||
out.write(' /DEF:%s.def' % os.path.join(self.to_src_dir, self.name))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue