win32 debug build.

Kevin Ryde user42@zip.com.au
Sat, 11 Jan 2003 06:17:13 +1000


"Tianzhi Yang" <tyang@firstrain.com> writes:
>
> Can anybody tell me how to build a libgmp-3.dll that depend on
> MSVCRTD.dll?

Looks like it comes from mingw gcc, going by "*libgcc" in the gcc
specs file.  You can probably use -nostdlib or -nodefaultlibs (or
both?) and instead explicitly give those libraries, but with -lmsvcrt
changed to -lmsvcrtd.

Libtool may or may not cooperate with that, you might have to watch
for the big "gcc" command it issues when building libgmp.la, and
re-run that, suitably modified.

Perhaps the mingw folks can give a better answer, all mingw DLLs
presumably end up like this.