mirror of
https://github.com/Z3Prover/z3
synced 2025-06-05 21:53:23 +00:00
Merge branch 'master' of https://github.com/Z3Prover/z3
This commit is contained in:
commit
7cb0237ab2
1 changed files with 5 additions and 2 deletions
|
@ -1633,6 +1633,8 @@ class DotNetDLLComponent(Component):
|
||||||
|
|
||||||
if not self.key_file is None:
|
if not self.key_file is None:
|
||||||
print("%s.dll will be signed using key '%s'." % (self.dll_name, self.key_file))
|
print("%s.dll will be signed using key '%s'." % (self.dll_name, self.key_file))
|
||||||
|
if (self.key_file.find(' ') != -1):
|
||||||
|
self.key_file = '"' + self.key_file + '"'
|
||||||
cscCmdLine.append('/keyfile:{}'.format(self.key_file))
|
cscCmdLine.append('/keyfile:{}'.format(self.key_file))
|
||||||
|
|
||||||
cscCmdLine.extend( ['/unsafe+',
|
cscCmdLine.extend( ['/unsafe+',
|
||||||
|
@ -2419,6 +2421,7 @@ def mk_config():
|
||||||
FOCI2 = False
|
FOCI2 = False
|
||||||
if GIT_HASH:
|
if GIT_HASH:
|
||||||
CPPFLAGS = '%s -DZ3GITHASH=%s' % (CPPFLAGS, GIT_HASH)
|
CPPFLAGS = '%s -DZ3GITHASH=%s' % (CPPFLAGS, GIT_HASH)
|
||||||
|
CXXFLAGS = '%s -std=c++11' % CXXFLAGS
|
||||||
CXXFLAGS = '%s -fvisibility=hidden -c' % CXXFLAGS
|
CXXFLAGS = '%s -fvisibility=hidden -c' % CXXFLAGS
|
||||||
FPMATH = test_fpmath(CXX)
|
FPMATH = test_fpmath(CXX)
|
||||||
CXXFLAGS = '%s %s' % (CXXFLAGS, FPMATH_FLAGS)
|
CXXFLAGS = '%s %s' % (CXXFLAGS, FPMATH_FLAGS)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue