The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: Farabi on February 08, 2010, 10:49:06 PM

Title: Problem after installing newest MASM
Post by: Farabi on February 08, 2010, 10:49:06 PM
Hai,
I used quaternion from hitchkr libs I found on OpenGL sub forum. When I compile it, it cannot found _fltused function
I think that function is exist on MSVCRT library, maybe MASM team overlooked it? Maybe.

I uploaded the lib.
Title: Re: Problem after installing newest MASM
Post by: akane on February 09, 2010, 02:41:40 AM
The _fltused symbol can be removed, it is added as external, but is not referenced.
I've created a tool for cleaning up object files using another language (link (http://www.ionicwind.com/forums/index.php/topic,3897.0.html)). This tool is able to remove _fltused like symbols, nasm structures (absolute symbols), and any other non-relocatables from coff symbol table.

Anyway, your library without _fltused is attached:
Title: Re: Problem after installing newest MASM
Post by: Farabi on February 09, 2010, 03:54:17 AM
Thanks.
Title: Re: Problem after installing newest MASM
Post by: UtillMasm on February 09, 2010, 04:01:08 AM
lib maker?