Custom Executable Link Flags
Enter link flags to pass to the compiler/linker when building executables.
Most platforms support just two options: start and end flags, which resolve to:
cl <start-flags> <rcb-generated-link-flags> <end-flags>
On platforms that use distinct compile and link options when building executables, all four options are available, as pictured here. In this case, the provided flags resolve to something like:
cl <start-flags> <rcb-generated-executable-compile-flags> <end-flags> /link
<start-link-flags> <rcb-generated-executable-link-flags> <end-link-flags>