D.gnu - creating static/dynamic lib (_minit remains unresolved)
- =?ISO-8859-15?Q?Manuel_K=F6nig?= (33/33) Jan 17 2007 Hi there,
- Sean Kelly (10/52) Jan 17 2007 See internal/dgccmain2.d. GDC's startup routine is different from
- =?ISO-8859-15?Q?Manuel_K=F6nig?= (5/62) Jan 17 2007 Many Thanks, Sean. You saved more thand 11.000 lines of code! I searched...
- sclytrack (4/10) Jan 17 2007 all: main.o libgui.so
Hi there, I've got a problem creating libraries with gdc (Windows-version). I want to build a library in D using gdc and link it against a C-program using gcc. Since the spec says I have to do some module startup I have to call _minit() like this: // in library.d: extern (C) { void gc_init(); void gc_term(); void _minit(); void _moduleCtor(); } extern(C) export void initLibrary() { gc_init(); _minit(); // <== initialize module list _moduleCtor(); } As you can see I export this function, so that my C-prog can call that to initialize the library. Building the (static) library and linking it to a C-program works fine with dmd and dmc. But when I use gdc/gcc, my library compiles without errors, but linking it against my C-program gives: undefined reference to '_minit' Hence this functions? implementation is not in my lib. I tried linking "libgphobos" against both gdc and gcc in any combination, but the problem remains. I tried building it without this init stuff, and gdc built the library, I could link it with my C-prog and call the exported functions, but for sure it gave errors when memory got allocated 'n stuff. But this shows that its no general library creation problem, rather an unresolved external. Does anyone know how to get rid of this problem? (or show me that I'm a noob and theres a totally different approach for gdc ...)
Jan 17 2007
Manuel König wrote:Hi there, I've got a problem creating libraries with gdc (Windows-version). I want to build a library in D using gdc and link it against a C-program using gcc. Since the spec says I have to do some module startup I have to call _minit() like this: // in library.d: extern (C) { void gc_init(); void gc_term(); void _minit(); void _moduleCtor(); } extern(C) export void initLibrary() { gc_init(); _minit(); // <== initialize module list _moduleCtor(); } As you can see I export this function, so that my C-prog can call that to initialize the library. Building the (static) library and linking it to a C-program works fine with dmd and dmc. But when I use gdc/gcc, my library compiles without errors, but linking it against my C-program gives: undefined reference to '_minit' Hence this functions? implementation is not in my lib. I tried linking "libgphobos" against both gdc and gcc in any combination, but the problem remains. I tried building it without this init stuff, and gdc built the library, I could link it with my C-prog and call the exported functions, but for sure it gave errors when memory got allocated 'n stuff. But this shows that its no general library creation problem, rather an unresolved external. Does anyone know how to get rid of this problem? (or show me that I'm a noob and theres a totally different approach for gdc ...)See internal/dgccmain2.d. GDC's startup routine is different from DMD's, which suggests that a function be provided to generalize library startup of D code. However, I think what you need to do is this: _STI_monitor_staticctor(); _STI_critical_init(); gc_init(); _moduleCtor(); _moduleUnitTests(); Sean
Jan 17 2007
Sean Kelly schrieb:Manuel König wrote:Many Thanks, Sean. You saved more thand 11.000 lines of code! I searched hours for that, is there any documentation? If not, there really should be one! Manuel KönigHi there, I've got a problem creating libraries with gdc (Windows-version). I want to build a library in D using gdc and link it against a C-program using gcc. Since the spec says I have to do some module startup I have to call _minit() like this: // in library.d: extern (C) { void gc_init(); void gc_term(); void _minit(); void _moduleCtor(); } extern(C) export void initLibrary() { gc_init(); _minit(); // <== initialize module list _moduleCtor(); } As you can see I export this function, so that my C-prog can call that to initialize the library. Building the (static) library and linking it to a C-program works fine with dmd and dmc. But when I use gdc/gcc, my library compiles without errors, but linking it against my C-program gives: undefined reference to '_minit' Hence this functions? implementation is not in my lib. I tried linking "libgphobos" against both gdc and gcc in any combination, but the problem remains. I tried building it without this init stuff, and gdc built the library, I could link it with my C-prog and call the exported functions, but for sure it gave errors when memory got allocated 'n stuff. But this shows that its no general library creation problem, rather an unresolved external. Does anyone know how to get rid of this problem? (or show me that I'm a noob and theres a totally different approach for gdc ...)See internal/dgccmain2.d. GDC's startup routine is different from DMD's, which suggests that a function be provided to generalize library startup of D code. However, I think what you need to do is this: _STI_monitor_staticctor(); _STI_critical_init(); gc_init(); _moduleCtor(); _moduleUnitTests(); Sean
Jan 17 2007
== Quote from Manuel_König (manuelk89 gmx.net)'s articleHi there, I've got a problem creating libraries with gdc (Windows-version). I want to build a library in D using gdc and link it against a C-program using gcc. Since the spec says I have to do some module startup I have to callall: main.o libgui.so cc -o main main.o -lpthread -ldl -lm -lgphobos -L. -lgui"libgphobos" against both gdc and gcc in any combination, but the problem remains.
Jan 17 2007