News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

crtmin

Started by Manos, April 20, 2019, 08:38:52 PM

Previous topic - Next topic

Manos

I have build a mini CRT static library, called crtmin.lib, for pcc32 compiler.
This library includes the most common, (61), functions for C language.
Of course there are some other functions inside this, which are used
only internally by the compiler.

To use it with pcc32 put the library in lib folder
and use the command line: pcc32 /c /MM mysource.c

Those functions have the same names with MS CRT library for three reasons:
1). The users don't have to learn new names.
2). The functions' references are the same with MSDN.
3). Users can compile older source code with pcc32 without any problem.

Thanks a lot to Vortex who checked my crtmin library.

Note:
Because I forgot some functions, I rebuilded the crtmin library.
Download it again.

Manos.

AlexN

Quote from: Manos on April 20, 2019, 08:38:52 PM
I have build a mini CRT static library, called crtmin.lib, for pcc32 compiler.
This library includes the most common, (61), functions for C language.
Great! Thanks!

Manos

Thank you Alex.

Now I am working on Link32.
I added the option: /DEF:<file>, so that
Link32 accepts definition, (.def) files for making DLLs.
In this way Link32 can build DLLs writen in assembly language.
Soon I 'll finish this work.

Manos.