I have a VC project with hundreds of global variables and buffers placed into several source files. I want the linker to put these variables physically adjacent in the final output executable in order that I can easily clean up these variables. I know that gcc linker can do that via a linker script. I just wonder if vc linker can also do that.
Thanks