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

Fix conflicting C function definitions #1812

Merged
merged 4 commits into from
Oct 28, 2022

Conversation

celinval
Copy link
Contributor

Description of changes:

Declare the function signatures instead of importing system definitions. This avoids conflict between our pre-build libraries and the C files that are built on the user machine.

Also remove the gen_c_lib.c file which seems to be dead code.

Resolved issues:

Fixes #1774

Related RFC:

Call-outs:

  1. Thanks for the suggestion @tedinski.
  2. We should probably increase the amount of tests we run with our bundles. I think there is a gap here. We don't test standalone Kani, neither more complicated examples. I'll leave that for a follow up PR.

Testing:

  • How is this change tested? Existing tests + manually tested on NixOs

  • Is this a refactor change? No

Checklist

  • Each commit message has a non-empty body, explaining why the change was made
  • Methods or procedures are documented
  • Regression or unit tests are included, or existing tests cover the modified code
  • My PR is restricted to a single feature or bugfix

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.

Declare the function signatures instead of importing system definitions.
This avoids conflict between our pre-build libraries and the C files
that are built on the user machine.

Also remove the gen_c_lib.c file which seems to be dead code.

Fixes model-checking#1774
@celinval celinval requested a review from a team as a code owner October 28, 2022 00:23
@@ -1,12 +1,14 @@
// Copyright Kani Contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT

#include <assert.h>
#include <stdbool.h>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While at it: do you really need/want to keep this one? I'd suggest you use __CPROVER_bool instead of bool.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, I can do that.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should I also use __CPROVER_size_t?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good idea, though you’ll still need the header for uint8_t.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I noticed that. I ended up just replacing the bool but I can replace size_t too.

Copy link
Contributor

@danielsn danielsn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@celinval celinval merged commit a1f1e64 into model-checking:main Oct 28, 2022
tautschnig added a commit to tautschnig/kani that referenced this pull request Jun 27, 2024
In model-checking#1812 we removed standard library includes and instead provided
forward declarations of `free`, `calloc`, and `memcpy` -- but seemingly
forgot to include `malloc`, which we also use.

This avoids a warning seen when dialling up `goto-cc` verbosity.
celinval pushed a commit that referenced this pull request Jun 27, 2024
In #1812 we removed standard library includes and instead provided
forward declarations of `free`, `calloc`, and `memcpy` -- but seemingly
forgot to include `malloc`, which we also use.

This avoids a warning seen when dialling up `goto-cc` verbosity.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Spurious verification error on s2n-quic harness on NixOS
4 participants