{ // Language version of C3. "langrev": "1", // Warnings used for all targets. "warnings": [ "no-unused" ], // Directories where C3 library files may be found. "dependency-search-paths": [ ], // Libraries to use for all targets. "dependencies": [ ], // Authors, optionally with email. "authors": [ "John Doe " ], // Version using semantic versioning. "version": "0.1.0", // Sources compiled for all targets. "sources": [ "./**" ], // Test sources compiled for all targets. "test-sources": [ "test/**" ], // C sources if the project also compiles C sources // relative to the project file. // "c-sources": [ "csource/**" ], // Output location, relative to project file. "output": ".", // Architecture and OS target. // You can use 'c3c --list-targets' to list all valid targets. "target": "linux-x64", // Targets. "targets": { "hello_world": { // Executable or library. "type": "executable", // Additional libraries, sources // and overrides of global settings here. }, }, // Global settings. // CPU name, used for optimizations in the LLVM backend. "cpu": "generic", // Link libc other default libraries. "link-libc": false, // Memory environment: "normal", "small", "tiny", "none". "memory-env": "small", // Optimization: "O0", "O1", "O2", "O3", "O4", "O5", "Os", "Oz". "opt": "Os", // Code optimization level: "none", "less", "more", "max". "optlevel": "none", // Code size optimization: "none", "small", "tiny". "optsize": "none", // Relocation model: "none", "pic", "PIC", "pie", "PIE". "reloc": "none", // Trap on signed and unsigned integer wrapping for testing. "trap-on-wrap": false, // Turn safety (contracts, runtime bounds checking, null pointer checks etc). "safe": false, // Compile all modules together, enables more inlining. "single-module": true, // Use / don't use soft float, value is otherwise target default. "soft-float": false, // Strip unused code and globals from the output. "strip-unused": true, // The size of the symtab, which limits the amount // of symbols that can be used. Should usually not be changed. "symtab": 1048576, // Select linker. "linker": "builtin", // Include the standard library. "use-stdlib": false, }