On Mon, 2007-06-18 at 20:16 -0600, Ximsce wrote:
> I don't get any int return warnings, the only output from compilation is:
> 
> Info: resolving _CRT_MT by linking to __imp__CRT_MT (auto-import)
> 
> which has something to do with multi-threading, I believe.

Actually this is a harmless linker message. The message itself has
nothing to do with multithreading, it can come for other symbols too.

This symbol happens to be MT-related though, that's the consequence of
some default compiler options. See src/mingw/crtmt.c, whose whole source
I've copied below.

Bottom line: nothing to worry about.

        Danny

/*
 * crtmt.c
 *
 * This object file defines _CRT_MT to have a value of 1, which will
 * turn on MT support in GCC runtime. This is only linked in when
 * you specify -mthreads when linking with gcc. The Mingw support
 * library, libmingw32.a, contains the complement, crtst.o, which
 * sets this variable to 0. 
 *
 * Mumit Khan  <[EMAIL PROTECTED]>
 *
 */

int _CRT_MT = 1;

-- 
Danny Backx ; danny.backx - at - scarlet.be ; http://danny.backx.info

Attachment: signature.asc
Description: This is a digitally signed message part

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to