Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some missing cstdint includes #262

Merged
merged 1 commit into from
Jan 28, 2024

Commits on Jan 26, 2024

  1. Add missing cstdint includes (NASA-SW-VnV#263).

    Newer versions of GCC have become more strict about import of
    known-size number types.
    
    Currently, compiling IKOS leads to errors similar to the following:
    In file included from /<<PKGBUILDDIR>>/core/include/ikos/core/domain/machine_int/abstract_domain.hpp:47,
                     from /<<PKGBUILDDIR>>/core/include/ikos/core/domain/machine_int/interval.hpp:46,
                     from /<<PKGBUILDDIR>>/analyzer/src/analysis/pointer/pointer.cpp:48:
    /<<PKGBUILDDIR>>/core/include/ikos/core/domain/machine_int/operator.hpp:97:24: error: ‘uint64_t’ has not been declared
       97 |                        uint64_t result_bit_width,
          |                        ^~~~~~~~
    
    This commits adds cstdint to the list of includes wherever a numerical
    type with a known or fixed size is used.
    swt2c authored and ivanperez-keera committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    79d335a View commit details
    Browse the repository at this point in the history