-
-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support additional keys in projects.
- Loading branch information
Showing
4 changed files
with
306 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,79 @@ | ||
{ | ||
// 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": [ "Dmitry Atamanov https://github.com/data-man" ], | ||
// Version using semantic versioning. | ||
"version": "0.0.1 Omega", | ||
// Sources compiled for all targets. | ||
"sources": [ "./**" ], | ||
// 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": { | ||
"type": "executable", | ||
"opt": "O3", | ||
"nolibc": true, | ||
"nostdlib": true | ||
"debug-info": "none", | ||
"link-libc": false, | ||
"opt": "O0", | ||
"safe": false, | ||
"system-linker": true, | ||
"use-stdlib": false, | ||
}, | ||
}, | ||
"debug-info": "none", | ||
"target": "linux-x64", | ||
// Global settings. | ||
// C compiler if the project also compiles C sources | ||
// defaults to 'cc'. | ||
"cc": "cc", | ||
// CPU name, used for optimizations in the LLVM backend. | ||
"cpu": "generic", | ||
// Debug information, may be "none", "full" and "line-tables". | ||
"debug-info": "full", | ||
// FP math behaviour: "strict", "relaxed", "fast". | ||
"fp-math": "strict", | ||
// Link libc other default libraries. | ||
"link-libc": true, | ||
// Memory environment: "normal", "small", "tiny", "none". | ||
"memory-env": "normal", | ||
// Optimization: "O0", "O1", "O2", "O3", "O4", "O5", "Os", "Oz". | ||
"opt": "O0", | ||
// 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": true, | ||
// 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, | ||
// Use the system linker. | ||
"system-linker": false, | ||
// Include the standard library. | ||
"use-stdlib": true, | ||
// Set general level of x64 cpu: "baseline", "ssse3", "sse4", "avx1", "avx2-v1", "avx2-v2", "avx512", "native". | ||
"x86cpu": "native", | ||
// Set max type of vector use: "none", "mmx", "sse", "avx", "avx512", "native". | ||
"x86vec": "sse", | ||
"cpu": "generic", | ||
"output": "." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,6 +91,7 @@ typedef enum | |
TRUST_INCLUDE, | ||
TRUST_FULL | ||
} TrustLevel; | ||
|
||
typedef enum | ||
{ | ||
COMPILE_NORMAL, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.