https://sourceware.org/bugzilla/show_bug.cgi?id=30145

--- Comment #4 from Pali Rohár <pali at kernel dot org> ---
So it looks like that IMAGE_SCN_MEM_READ characteristic is always added,
IMAGE_SCN_MEM_WRITE characteristic is added only when readonly flag is not
specified. And other flags add following characteristics:

alloc --> IMAGE_SCN_CNT_UNINITIALIZED_DATA
noload --> IMAGE_SCN_MEM_DISCARDABLE
debug --> IMAGE_SCN_CNT_INITIALIZED_DATA + IMAGE_SCN_MEM_DISCARDABLE
code --> IMAGE_SCN_CNT_CODE + IMAGE_SCN_MEM_EXECUTE
data --> IMAGE_SCN_CNT_INITIALIZED_DATA
exclude --> IMAGE_SCN_MEM_DISCARDABLE
share --> IMAGE_SCN_MEM_SHARED

What is difference between noload and exclude? Seems that both flags do same
thing.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Reply via email to