The MASM Forum Archive 2004 to 2012

Specialised Projects => Compiler Based Assembler => Assembler With Microsoft Visual C => Topic started by: ToutEnMasm on October 23, 2011, 08:26:57 AM

Title: rebuild of the crt library
Post by: ToutEnMasm on October 23, 2011, 08:26:57 AM
I try to made my own build of the crt.
Method is simple.In a c++ environnement given by \VC\bin\vcvars32.bat,use the BLDNT.CMD.
It's so simple....EXCEPT than  the BLDNT.CMD cannot be found ??????.
Any Help ?
Title: Re: rebuild of the crt library
Post by: Vortex on October 23, 2011, 08:35:53 AM
Hi ToutEnMasm,

You don't need of BLDNT.CMD to build your C run-time library. Have a look at my project (http://www.masm32.com/board/index.php?topic=166.0)

Just forget the VS methods and try to build your own.
Title: Re: rebuild of the crt library
Post by: ToutEnMasm on October 23, 2011, 04:12:56 PM

What i want is a library with full code.The library (c++ 10) must allow the use of floating point functions and don't call any crt dll.
Is it possible ?
Title: Re: rebuild of the crt library
Post by: Vortex on October 23, 2011, 05:19:36 PM
Hi ToutEnMasm,

If you are willing to write your own routines, everything is possible. The standart crt libraries supplied with VS have a lot of interdependencies and this what make difficult your task. If you wish to use the existing code, you have to understand and manage those dependencies.