WelcomeUser Guide
ToSPrivacyCanary
DonateBugsLicense

©2026 Poal.co

459

It seems that the war on C/C++ is everywhere. "Rust" is the new kid and everyone want's you to use it.

Archive: https://archive.today/PbL2k

From the post:

>The C programming language—powering everything from operating systems to aircraft control software—has long been a cornerstone of modern computing. But its flexibility comes at a cost: memory safety issues, like buffer overflows and dangling pointers, continue to plague high-assurance systems with critical vulnerabilities, and users must constantly update their systems to avoid becoming victims of attacks To tackle this systemic risk, a team of researchers from the University of Wisconsin–Madison; the University of California, Berkeley; the University of Edinburgh, and the University of Illinois Urbana-Champaign has received a $5 million award from the Defense Advanced Research Projects Agency (DARPA) under its Translating All C to Rust (TRACTOR) program. The team’s goal is to create automated tools that can safely and verifiably convert legacy C codebases into the memory-safe Rust programming language without sacrificing performance or functionality.

It seems that the war on C/C++ is everywhere. "Rust" is the new kid and everyone want's you to use it. Archive: https://archive.today/PbL2k From the post: >>The C programming language—powering everything from operating systems to aircraft control software—has long been a cornerstone of modern computing. But its flexibility comes at a cost: memory safety issues, like buffer overflows and dangling pointers, continue to plague high-assurance systems with critical vulnerabilities, and users must constantly update their systems to avoid becoming victims of attacks To tackle this systemic risk, a team of researchers from the University of Wisconsin–Madison; the University of California, Berkeley; the University of Edinburgh, and the University of Illinois Urbana-Champaign has received a $5 million award from the Defense Advanced Research Projects Agency (DARPA) under its Translating All C to Rust (TRACTOR) program. The team’s goal is to create automated tools that can safely and verifiably convert legacy C codebases into the memory-safe Rust programming language without sacrificing performance or functionality.

(post is archived)

[–] 2 pts

The team’s goal is to create automated tools that can safely and verifiably convert legacy C codebases into the memory-safe Rust programming language without sacrificing performance or functionality.

Good luck with that.

For starters, Rust memory safety is an illusion; see cve-rs (github.com).

A wiser strategy would be to start building existing C and C++ code with Fil-C (fil-c.org). It can detect unsafe programming and you don’t need to create a mess by rewriting in a new language.