/Nd Compiler Option

Syntax: Default:
/Ndname Use DATA32, BSS32, and CONST32_RO

Use /Nd to specify the names of default data, uninitialized data, and constant sections as nameDATA32, nameBSS32, and nameCONST32_RO, respectively. You can then give the sections special attributes, with the /SECTION linker option. The renamed sections are not placed in the default data group (DGROUP).

Notes:

  1. While the /Nd option allows you to rename CONST32_RO and BSS32, you do not need to rename them in order to assign them special attributes.
  2. CONST32_RO is READONLY and SHARED by default.

If you do not use the /Nd option, the default names are DATA32, BSS32, and CONST32_RO.



Summary of Compiler Options