| Joel |
6th December 2004 15:14 |
Advice in Visual C++ 6.0 linker...
I'm using this to reduce my executable size (release):
PHP Code:
#pragma comment(linker,"/merge:.rdata=.data")
#pragma comment(linker,"/merge:.text=.data")
#pragma comment(linker,"/merge:.reloc=.data")
but I get this warnings:
Quote:
LINK : warning LNK4078: multiple ".data" sections found with different attributes (40000040)
LINK : warning LNK4078: multiple ".data" sections found with different attributes (60000020)
|
How can I fix it?
|