You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The distutils.util.get_platform() is insufficient for AIX, e.g., it does not provide any idea of bitness.
AIX has, built-in, support for binary compatibility from old to new - so the tag needs to include sufficient detail to know if a potential package is older, the same, or newer than the current running environment.
The proposed tag is:
"AIX-{:04d}-{:04d}-{:2d}".format(vrtl,builddate,bitsize)
where vrtl is the Version,Release,Technology_Level; builddate is the AIX builddate of bos.mp64, and bitsize is 32 if sys.maxsize == 2147483647
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
The distutils.util.get_platform() is insufficient for AIX, e.g., it does not provide any idea of bitness.
AIX has, built-in, support for binary compatibility from old to new - so the tag needs to include sufficient detail to know if a potential package is older, the same, or newer than the current running environment.
The proposed tag is:
"AIX-{:04d}-{:04d}-{:2d}".format(vrtl,builddate,bitsize)
where vrtl is the Version,Release,Technology_Level; builddate is the AIX builddate of bos.mp64, and bitsize is 32 if sys.maxsize == 2147483647
The text was updated successfully, but these errors were encountered: