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
Describe the bug
Although specified in C99, there are some old systems out there that do not provide an intmax_t or uintmax_t type in stdint.h. Example is VxWorks 6.9 / Workbench 3.3 using gcc 4.3.3.
UtAssert uses these types, so it fails to build on this platform.
To Reproduce
Build UtAssert on VxWorks 6.9 - fails on missing types intmax_t and uintmax_t.
Expected behavior
Build should succeed
System observed on:
GSFC VxWorks build host
Additional context
Workaround would be to use long and unsigned long instead.
Reporter Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered:
Describe the bug
Although specified in C99, there are some old systems out there that do not provide an
intmax_t
oruintmax_t
type instdint.h
. Example is VxWorks 6.9 / Workbench 3.3 using gcc 4.3.3.UtAssert uses these types, so it fails to build on this platform.
To Reproduce
Build UtAssert on VxWorks 6.9 - fails on missing types
intmax_t
anduintmax_t
.Expected behavior
Build should succeed
System observed on:
GSFC VxWorks build host
Additional context
Workaround would be to use
long
andunsigned long
instead.Reporter Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: