zig/deps/aro
Evan Haas e6b9312bd0 aro: Add stub definitions to enable bootstrapping
Co-authored-by: Veikka Tuominen <git@vexu.eu>
2023-11-03 22:18:40 +02:00
..
Attribute sync Aro dependency 2023-11-02 22:45:58 -07:00
build aro: Add stub definitions to enable bootstrapping 2023-11-03 22:18:40 +02:00
Builtins sync Aro dependency 2023-11-02 22:45:58 -07:00
codegen sync Aro dependency 2023-11-02 22:45:58 -07:00
Driver
object sync Aro dependency 2023-11-02 22:45:58 -07:00
pragmas sync Aro dependency 2023-10-17 11:55:01 +03:00
toolchains
Attribute.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
Builtins.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
CharInfo.zig
CharLiteral.zig sync Aro dependency 2023-10-17 11:55:01 +03:00
CodeGen.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
Codegen_legacy.zig
Compilation.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
Diagnostics.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
Driver.zig sync Aro dependency 2023-10-17 11:55:01 +03:00
features.zig
InitList.zig
Interner.zig
Ir.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
LangOpts.zig sync Aro dependency 2023-10-17 11:55:01 +03:00
lib.zig
number_affixes.zig
Object.zig
Parser.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
Pragma.zig
Preprocessor.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
README.md sync Aro dependency 2023-10-17 11:55:01 +03:00
record_layout.zig
Source.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
StringInterner.zig
SymbolStack.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
target.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
TextLiteral.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
Tokenizer.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
Toolchain.zig
Tree.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
Type.zig sync Aro dependency 2023-11-02 22:45:58 -07:00
util.zig
Value.zig sync Aro dependency 2023-11-02 22:45:58 -07:00

Aro

A C compiler with the goal of providing fast compilation and low memory usage with good diagnostics.

Aro is included as an alternative C frontend in the Zig compiler for translate-c and eventually compiling C files by translating them to Zig first. Aro is developed in https://github.com/Vexu/arocc and the Zig dependency is updated from there when needed.

Currently most of standard C is supported up to C23 and as are many of the common extensions from GNU, MSVC, and Clang

Basic code generation is supported for x86-64 linux and can produce a valid hello world:

$ cat hello.c
extern int printf(const char *restrict fmt, ...);
int main(void) {
    printf("Hello, world!\n");
    return 0;
}
$ zig build run -- hello.c -o hello
$ ./hello
Hello, world!
$