Forgot to include the mailing list, sorry. ----- Forwarded Message ----> From: Samuel Crow <samuraileumas at yahoo.com> > To: Gregory Petrosyan <gregory.petrosyan at gmail.com> > Sent: Tue, December 8, 2009 1:05:43 PM > Subject: Re: [LLVMdev] LLVM 2.6 cygwin build fails > > Hi Gregory, > > I think MSYS can build DLLs on Win32 so it's only the Cygwin version that can > not build the modules. > > That's what our team is trying to do right now using LLVM-GCC. > > --Sam Crow
Am 08.12.2009 21:21, schrieb Anton Korobeynikov:>>> I think MSYS can build DLLs on Win32 so it's only the Cygwin version that can >>> not build the modules. >>> That's what our team is trying to do right now using LLVM-GCC. > The system does not matter. > The issue here is that on windows you cannot have undefined symbols in > the binaries. Thus there is no support for "loadable modules". >Hi, do you know about LoadLibrary and GetProcAddress? http://msdn.microsoft.com/en-us/library/ms682599%28VS.85%29.aspx This might be what you need for loadable modules in generic, but I don't know the actual use case, so i'm not 100% sure if you are able to archieve your goal with the above. Cornelius