xtool/contrib/LIBC
Razor12911 30ce6f00fc update to 0.7.3 2023-06-30 05:02:05 +02:00
..
.gitignore update to 0.7.3 2023-06-30 05:02:05 +02:00
README.md update to 0.7.3 2023-06-30 05:02:05 +02:00
_chkstk.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
chkstk.x64.o update to 0.7.3 2023-06-30 05:02:05 +02:00
chkstk.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
chkstk_ms.x64.o update to 0.7.3 2023-06-30 05:02:05 +02:00
chkstk_ms.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
cpu_disp.x64.o update to 0.7.3 2023-06-30 05:02:05 +02:00
cpu_disp.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
ctzdi2.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
ctzti2.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
divdi3.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
int_util.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
libc.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
libgcc.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
libmsvcrt.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
libucrt.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
libvcruntime140.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
llmul.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
memcmp.x64.o update to 0.7.3 2023-06-30 05:02:05 +02:00
memcmp.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
memcpy.x64.o update to 0.7.3 2023-06-30 05:02:05 +02:00
memcpy.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
memmove.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
memset.x64.o update to 0.7.3 2023-06-30 05:02:05 +02:00
memset.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
pkglibc.bpi update to 0.7.3 2023-06-30 05:02:05 +02:00
pkglibc.dpk update to 0.7.3 2023-06-30 05:02:05 +02:00
pkglibc.dproj update to 0.7.3 2023-06-30 05:02:05 +02:00
pkglibc.dproj.local update to 0.7.3 2023-06-30 05:02:05 +02:00
pkglibc.identcache update to 0.7.3 2023-06-30 05:02:05 +02:00
pkglibc.res update to 0.7.3 2023-06-30 05:02:05 +02:00
pkglibc_nonshared.a update to 0.7.3 2023-06-30 05:02:05 +02:00
testlibgcc.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
testlibmsvcrt.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
testlibucrt.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
testlibvcruntime140.pas update to 0.7.3 2023-06-30 05:02:05 +02:00
testucrt.dpr update to 0.7.3 2023-06-30 05:02:05 +02:00
testucrt.dproj update to 0.7.3 2023-06-30 05:02:05 +02:00
testucrt.dproj.local update to 0.7.3 2023-06-30 05:02:05 +02:00
testucrt.identcache update to 0.7.3 2023-06-30 05:02:05 +02:00
testucrt.res update to 0.7.3 2023-06-30 05:02:05 +02:00
udivdi3.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
ulldiv.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00
ullshr.x86.o update to 0.7.3 2023-06-30 05:02:05 +02:00

README.md

LIBC

a C Run Time library for Delphi, helps link with other C object files

Delphi come up a build in unit named System.Win.Crtl do the same job. How ever, this build in Unit didn't cover enough C functions. I just copy paste this Unit, and Appends any functions I found when linking other C object files into it. So, it is a better way to use this unit than the buildin one.

系统自带单元System.Win.Crtl的复制粘贴+扩展版本覆盖更多的C标准库和一些特定编译器的内建函数当你想链接的C目标文件调用到这些函数时添加一句uses libc可能可以帮助你成功链接。