-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 803 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "ccc"
version = "0.1.0"
edition = "2021"
description = "Claude's C Compiler — a C compiler targeting x86-64, i686, ARM64, and RISC-V"
autobins = false
[[bin]]
name = "ccc"
path = "src/main.rs"
[[bin]]
name = "ccc-x86"
path = "src/bin/ccc_x86.rs"
[[bin]]
name = "ccc-arm"
path = "src/bin/ccc_arm.rs"
[[bin]]
name = "ccc-riscv"
path = "src/bin/ccc_riscv.rs"
[[bin]]
name = "ccc-i686"
path = "src/bin/ccc_i686.rs"
[features]
# Allow GCC as a linker fallback. When enabled and GCC is used, a warning is printed.
gcc_linker = []
# Allow GCC as an assembler fallback. When enabled and GCC is used, a warning is printed.
gcc_assembler = []
# Allow GCC passthrough for -m16 mode (16-bit real-mode boot code).
# When enabled and GCC is used, a prominent warning is printed.
gcc_m16 = []