On Wednesday 01 March 2006 10:35, Duncan Coutts wrote:
> Does anyone have any other suggestions?

i dont know exactly what you're trying to accomplish, but the way wine does it 
is by faking out the ssp symbols

in their loader, they add (for gcc-4.1+):
void *__stack_chk_guard = 0;
void _stack_chk_fail(void) { return; }

older versions of ssp used diff symbols, so i patch in these for wine:
void *__guard = 0;
void __stack_smash_handler(void) { return; }
-mike
-- 
[email protected] mailing list

Reply via email to