mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
log classificaiton
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
25f53c0467
commit
1d12b72bbc
3 changed files with 11 additions and 17 deletions
|
@ -25,6 +25,7 @@ def mk_dir(d):
|
|||
os_info = {"z64-ubuntu-14" : ('so', 'ubuntu.14.04-x64'),
|
||||
'ubuntu-18' : ('so', 'ubuntu-x64'),
|
||||
'ubuntu-20' : ('so', 'ubuntu-x64'),
|
||||
'glibc-2.31' : ('so', 'glibc-x64'),
|
||||
'x64-win' : ('dll', 'win-x64'),
|
||||
'x86-win' : ('dll', 'win-x86'),
|
||||
'osx' : ('dylib', 'macos'),
|
||||
|
@ -35,6 +36,7 @@ def classify_package(f):
|
|||
if os_name in f:
|
||||
ext, dst = os_info[os_name]
|
||||
return os_name, f[:-4], ext, dst
|
||||
print("Could not classify", f)
|
||||
return None
|
||||
|
||||
def replace(src, dst):
|
||||
|
@ -49,9 +51,7 @@ def unpack(packages, symbols):
|
|||
# +- runtimes
|
||||
# +- win-x64
|
||||
# +- win-x86
|
||||
# +- ubuntu.16.04-x64
|
||||
# +- ubuntu.14.04-x64
|
||||
# +- debian.8-x64
|
||||
# +- ubuntu-x64
|
||||
# +- macos
|
||||
# +
|
||||
tmp = "tmp" if not symbols else "tmpsym"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue