Skip to content

Latest commit

 

History

History
83 lines (75 loc) · 2.13 KB

File metadata and controls

83 lines (75 loc) · 2.13 KB
title -SECTION (EDITBIN) | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-tools
ms.tgt_pltfrm
ms.topic article
f1_keywords
/section
dev_langs
C++
helpviewer_keywords
-SECTION editbin option
SECTION editbin option
alignment characters in sections
/SECTION editbin option
ms.assetid 4680ab4e-c984-4251-8241-93440cad7615
caps.latest.revision 8
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

/SECTION (EDITBIN)

/SECTION:name[=newname][,attributes][alignment]  

Remarks

This option changes the attributes of a section, overriding the attributes that were set when the object file for the section was compiled or linked.

After the colon ( : ), specify the name of the section. To change the section name, follow name with an equal sign (=) and a newname for the section.

To set or change the section's attributes, specify a comma (,) followed by one or more attributes characters. To negate an attribute, precede its character with an exclamation point (!). The following characters specify memory attributes:

Attribute Setting
c code
d discardable
e executable
i initialized data
k cached virtual memory
m link remove
o link info
p paged virtual memory
r read
s shared
u uninitialized data
w write

To control alignment, specify the character A followed by one of the following characters to set the size of alignment in bytes, as follows:

Character Alignment size in bytes
1 1
2 2
4 4
8 8
p 16
t 32
s 64
x no alignment

Specify the attributes and alignment characters as a string with no white space. The characters are not case sensitive.

See Also

EDITBIN Options