CompCert

The CompCert formally-verified C compiler (by AbsInt)

CompCert Alternatives

Similar projects and alternatives to CompCert

  1. rust

    2,968 CompCert VS rust

    Empowering everyone to build reliable and efficient software.

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. go

    2,423 CompCert VS go

    The Go programming language

  4. JDK

    221 CompCert VS JDK

    JDK main-line development https://openjdk.org/projects/jdk

  5. mullvadvpn-app

    The Mullvad VPN client app for desktop and mobile

  6. wuffs

    Wrangling Untrusted File Formats Safely

  7. gcc

    98 CompCert VS gcc
  8. rocq

    89 CompCert VS rocq

    The Rocq Prover is an interactive theorem prover, or proof assistant. It provides a formal language to write mathematical definitions, executable algorithms and theorems together with an environment for semi-interactive development of machine-checked proofs.

  9. seL4

    The seL4 microkernel

  10. rustc_codegen_cranelift

    Cranelift based backend for rustc

  11. cargo-geiger

    Detects usage of unsafe Rust in a Rust crate and its dependencies.

  12. sol2

    25 CompCert VS sol2

    Sol3 (sol2 v3.0) - a C++ <-> Lua API wrapper with advanced features and top notch performance - is here, and it's great! Documentation:

  13. cakeml

    15 CompCert VS cakeml

    CakeML: A Verified Implementation of ML

  14. checkedc

    Checked C is an extension to C that lets programmers write C code with bounds checking and improved type-safety. The goal is to let people easily make their existing C code type-safe and eliminate entire classes of errors.

  15. winix

    A UNIX-style Operating System for the Waikato RISC Architecture Microprocessor (WRAMP)

  16. ikos

    19 CompCert VS ikos

    Static analyzer for C/C++ based on the theory of Abstract Interpretation.

  17. rosenpass

    Rosenpass is a post-quantum-secure VPN that uses WireGuard to transport the actual data.

  18. proofs

    5 CompCert VS proofs

    My personal repository of formally verified mathematics.

  19. archive-program

    The GitHub Archive Program & Arctic Code Vault

  20. c2nim

    c2nim is a tool to translate Ansi C code to Nim. The output is human-readable Nim code that is meant to be tweaked by hand before and after the translation process.

  21. x509-limbo

    A suite of testvectors for X.509 certificate path validation and tools for building them

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better CompCert alternative or higher similarity.

CompCert discussion

Log in or Post with

CompCert reviews and mentions

Posts with mentions or reviews of CompCert. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-10-08.
  • Lies, Damned Lies and Proofs: Formal Methods Are Not Slopless
    1 project | news.ycombinator.com | 17 Jan 2026
    > Third, you need to decide how far “down the stack” you want to go. That is to say, the software you want to verify operates over some kind of more complex system, for instance, maybe it’s C code which gets compiled down to X86 and runs on a particular chip, or maybe it’s a controller for a nuclear reactor and part of the system is the actual physical dynamics of the reactor. Do you really want your proof to involve specifying the semantics of the C compiler and the chip, or the way that the temperature and other variables fluctuate in the reactor?

    I can appreciate what he's getting at, but my utopian vision for the future is that we won't need to reinvent the wheel like this each time we want verified software! E.g. for high-consequence systems, the hard part of compiler correctness is already handled by the efforts of (Compcert)[https://github.com/AbsInt/CompCert], and SystemVerilog assertions for the design guarantees of processors is becoming more commonplace.

  • We found a bug in Go's ARM64 compiler
    7 projects | news.ycombinator.com | 8 Oct 2025
    Yep. Model checking is for checking that your design is sound, basically, not at all the implementation.

    For the implementation, you can use certified compilers like CompCert [1], but:

    - you still have to show your code is correct

    - there are still parts of CompCert that are not certified

    [1] https://compcert.org/

  • The Illustrated Guide to a PhD
    1 project | news.ycombinator.com | 12 Jan 2025
  • CompCert: Formally verified compilers usable for critical embedded software
    1 project | news.ycombinator.com | 23 Oct 2024
  • Breaking Bad: How Compilers Break Constant-Time~Implementations
    3 projects | news.ycombinator.com | 23 Oct 2024
    Possibly (I don't know how volatile interact with registers allocation), but the thing is you don't just want this specific example to work, there are a lot of things you want to be able to really ensure, i.e., have rigorous proof of [1]. So maybe if the semantics is adequate and the compiler itself is formally proved like CompCert [2] you can rely on volatile, but that's a lot a assumptions.

    [1] See for example the work we did in this paper: Formally Proved Security of Assembly Code Against Power Analysis: A Case Study on Balanced Logic https://eprint.iacr.org/2013/554

    [2] https://compcert.org/

  • Translation of the Rust's core and alloc crates to Coq for formal verification
    3 projects | news.ycombinator.com | 15 May 2024
    You can write programs in Coq and extract them in OCaml with the `Extraction' command: https://coq.inria.fr/doc/v8.19/refman/addendum/extraction.ht...

    This is used by compcert: https://compcert.org/

  • Differ: Tool for testing and validating transformed programs
    6 projects | news.ycombinator.com | 31 Jan 2024
    A big problem is that proving that transformations preserve semantics is very hard. Formal methods has huge potential and I believe it will be a big part of the future, but it hasn't become mainstream yet. Probably a big reason why is that right now it's simply not practical: the things you can prove are much more limited than the things you can do, and it's a lot less work to just create a large testsuite.

    Example: CompCert (https://compcert.org/), a formally-verified compiler AKA formally-verified sequence of semantics-preserving transformations from C code to Assembly. It's a great accomplishment, but few people are actually compiling their code with CompCert. Because GCC and LLVM are much faster[1], and have been used so widely that >99.9% of code is going to be compiled correctly, especially code which isn't doing anything extremely weird.

    But as articles like this show, no matter how large a testsuite there may always be bugs, tests will never provide the kind of guarantees formal verification does.

    [1] From CompCert, "Performance of the generated code is decent but not outstanding: on PowerPC, about 90% of the performance of GCC version 4 at optimization level 1"

  • So you think you know C?
    2 projects | news.ycombinator.com | 20 Jan 2024
  • Can the language of proof assistants be used for general purpose programming?
    3 projects | news.ycombinator.com | 27 Oct 2023
    Also a C compiler (https://compcert.org/). I did exaggerate bit in saying that anything non-trivial is "nearly impossible".

    However, both CompCert and sel4 took a few years to develop, whereas it would only take months if not weeks to make versions of both which aren't formally verified but heavily tested.

  • A Guide to Undefined Behavior in C and C++
    9 projects | news.ycombinator.com | 17 Aug 2023
    From my experience, while many MCUs have settled for the big compilers (GCC and Clang), DSPs and some FPGAs (not Intel and Xilinx, those have lately settled for Clang and a combination of Clang and GCC respectively) use some pretty bespoke compilers (just running ./ --version is enough to verify this, if the compiler even offers that option). That's not necessarily bad, since many of them offer some really useful features, but error messages can be really cryptic in some cases. Also some industries require use of verified compilers, like CompCert[1], and in such cases GCC and Clang just don't cut it.

    [1]: https://compcert.org/

  • A note from our sponsor - SaaSHub
    www.saashub.com | 19 Jul 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic CompCert repo stats
42
2,190
8.3
8 days ago

AbsInt/CompCert is an open source project licensed under GNU General Public License v3.0 or later which is an OSI approved license.

The primary programming language of CompCert is Rocq Prover.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com