3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-20 17:14:43 +00:00

AIX compat (#8113)

* fix name conflict for struct proc

* aix compat
This commit is contained in:
Simon Sobisch 2026-01-05 16:23:05 +01:00 committed by GitHub
parent ff7d0fb501
commit c390afa279
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 14 additions and 6 deletions

View file

@ -2714,6 +2714,10 @@ def mk_config():
SO_EXT = '.so'
SLIBFLAGS = '-shared'
SLIBEXTRAFLAGS = '%s -mimpure-text' % SLIBEXTRAFLAGS
elif sysname == 'AIX':
SO_EXT = '.so'
SLIBFLAGS = '-shared'
SLIBEXTRAFLAGS = '%s' % LDFLAGS
elif sysname.startswith('CYGWIN'):
SO_EXT = '.dll'
SLIBFLAGS = '-shared'