Skip to content

Commit

Permalink
rename: compile to binary -> link to binary (#4577)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkm committed Jan 11, 2023
1 parent e861f94 commit 912494f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion views/options-output.pug
Expand Up @@ -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)

0 comments on commit 912494f

Please sign in to comment.