diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2023-01-11 21:01:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 21:01:20 +0100 |
commit | 912494f78084b44cb1210dc0a24e71310a74d47f (patch) | |
tree | d20f400bffe6ff8e435d371ff36f413ff21be30e | |
parent | e861f94a0d32622395536175c5f3df5880bc8744 (diff) | |
download | compiler-explorer-gh-5746.tar.gz compiler-explorer-gh-5746.zip |
rename: compile to binary -> link to binary (#4577)gh-5746
-rw-r--r-- | views/options-output.pug | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/views/options-output.pug b/views/options-output.pug index aa6cae04d..dbd620a61 100644 --- a/views/options-output.pug +++ b/views/options-output.pug @@ -14,7 +14,9 @@ mixin outputoption(name, longdescription, shortdescription, defaultchecked) input.d-none(type="checkbox" checked=defaultchecked) // If you modify this, update types/features/filters.interfaces.ts +outputoption('binaryObject', 'Compile to binary object and disassemble the output', 'Compile to binary object', false) -+outputoption('binary', 'Compile to binary and disassemble the output', 'Compile to binary', false) +// the field needs to keep being "binary" and not "link" or something closer to the description as it is part of +// our interface and we can't break it. ++outputoption('binary', 'Link to binary and disassemble the output', 'Link to binary', false) +outputoption('execute', 'Execute code and show its output', 'Execute the code', false) +outputoption('intel', 'Output disassembly in Intel syntax', 'Intel asm syntax', true) +outputoption('demangle', 'Demangle output', 'Demangle identifiers', true) |