Author Topic: crtmin  (Read 4117 times)

Manos

  • Moderator
  • Member
  • *****
  • Posts: 50
crtmin
« 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.
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.
« Last Edit: April 25, 2019, 08:08:07 PM by Manos »

AlexN

  • Regular Member
  • *
  • Posts: 1
Re: crtmin
« Reply #1 on: July 10, 2019, 04:38:34 AM »
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

  • Moderator
  • Member
  • *****
  • Posts: 50
Re: crtmin
« Reply #2 on: July 10, 2019, 07:12:20 PM »
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.