aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/tinyc.js
diff options
context:
space:
mode:
authorRubén Rincón Blanco <ruben@rinconblanco.es>2021-07-06 05:21:56 +0200
committerGitHub <noreply@github.com>2021-07-06 05:21:56 +0200
commit78c0f67cab9e50cb05b1989c7e71fc78579686f6 (patch)
treec4b4a6e4a59c99c151d77928815bb3363ad5b794 /lib/compilers/tinyc.js
parent27012bb0ec4b368b0052d6c260cf18dff78f4934 (diff)
downloadcompiler-explorer-78c0f67cab9e50cb05b1989c7e71fc78579686f6.tar.gz
compiler-explorer-78c0f67cab9e50cb05b1989c7e71fc78579686f6.zip
Config changes (#2764)
* Pass -g to TinyC by default Closes #2748 * Sort C++ libs and tools alphabetically * Sort C libs and tools alphabetically * Add missing Zig C & C++ versions * Enable semver for RISC-V Clang Issue #2739 * Add missing RISC-V Clang 12.0 Issue #2739 * Improve RISC-V Clang config * Improve C++ props file to make it more mantainable * Add missing Zig C compiler id in compiler list * Update etc/config/c++.amazon.properties * Show different group name for each RISCV version
Diffstat (limited to 'lib/compilers/tinyc.js')
-rw-r--r--lib/compilers/tinyc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/tinyc.js b/lib/compilers/tinyc.js
index 479882fe0..8c1c1333f 100644
--- a/lib/compilers/tinyc.js
+++ b/lib/compilers/tinyc.js
@@ -36,7 +36,7 @@ export class TinyCCompiler extends BaseCompiler {
if (!_.some(userOptions, (opt) => opt === '-E')) {
filters.binary = true;
}
- return ['-o', this.filename(outputFilename)];
+ return ['-g', '-o', this.filename(outputFilename)];
}
}