someone responded already thank you, I don't know why his response does not show up here. In any case, the problem is in the code where ELF assembler code is being injected into it. Unfortunately its beyond my pay grade to fix it, but here it is in case anyone is looking for help on this in the future or if someone knows how to fix it, please let me know. -------------- #define __ASM_DEFINE_FUNC(name,suffix,code) asm(".text\n\t.align 4\n\t.globl " #name suffix "\n\t.type " #name suffix ",@function\n" #name suffix ":\n\t.cfi_startproc\n\t" code "\n\t.cfi_endproc\n\t.previous"); #define __ASM_GLOBAL_FUNC(name,code) __ASM_DEFINE_FUNC(name,"",code) #define __ASM_NAME(name) name #define __ASM_STDCALL(args) "" /* From wine source */ #ifdef __i386__ /* thiscall functions are i386-specific */ #define THISCALL(func) __thiscall_ ## func #define THISCALL_NAME(func) __ASM_NAME("__thiscall_" #func) #define __thiscall __stdcall #define DEFINE_THISCALL_WRAPPER(func,args) \ extern void THISCALL(func)(void); \ __ASM_GLOBAL_FUNC(__thiscall_ ## func, \ "popl %eax\n\t" \ "pushl %ecx\n\t" \ "pushl %eax\n\t" \ "jmp " __ASM_NAME(#func) __ASM_STDCALL(args) ) #else /* __i386__ */ #define THISCALL(func) func #define THISCALL_NAME(func) __ASM_NAME(#func) #define __thiscall __cdecl #define DEFINE_THISCALL_WRAPPER(func,args) /* nothing */ #endif /* __i386__ */ /* Hide ELF symbols for the COM members - No need to to export them */ #define HIDDEN __attribute__ ((visibility("hidden"))) -- View this message in context: http://old.nabble.com/Help-with-strange-error-tp33849870p33850473.html Sent from the gcc - Help mailing list archive at Nabble.com.