Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
you may want to declare your "end" symbol as [tt]extern "C" ... end;[/tt] rather than [tt]extern ... end;[/tt]. Otherwise, C++ name mangling might be preventing your code to access the proper symbol.
root wrote:
i have fixed the pb. i use the cygwin compiler wich add an underscore at the begining of my declaration so i used this declarations in the ld script
hmm ... yes, the usual stuff ... you may want to use -fno-leading-underscore or something alike to avoid such behaviour from GCC (that is, override the local ABI preferences)