- 所有 tcc 文件/内容/宏改名为 pcc (tcc.c->pcc.c, tccelf.c->pccelf.c, libtcc.c->libpcc.c 等) - 支持架构: i386, x86_64, ARM, ARM64, RISC-V, C67 - 支持格式: PE, ELF, Mach-O, COFF - 完整预处理、代码生成、链接器、调试信息 - 构建成功: pcc.exe (x86_64 Windows) - 功能测试通过: 递归/结构体/浮点/switch/循环 - 自编译测试通过: pcc 可以编译自身
60 行
904 B
C
60 行
904 B
C
#include <stdio.h>
|
|
|
|
int atexit(void (*function)(void));
|
|
int on_exit(void (*function)(int, void *), void *arg);
|
|
void exit(int status);
|
|
|
|
void __attribute((constructor)) startup5(void)
|
|
{
|
|
printf ("startup5\n");
|
|
}
|
|
|
|
void cleanup1(void)
|
|
{
|
|
printf ("cleanup1\n");
|
|
fflush(stdout);
|
|
}
|
|
|
|
void cleanup2(void)
|
|
{
|
|
printf ("cleanup2\n");
|
|
}
|
|
|
|
void cleanup3(int ret, void *arg)
|
|
{
|
|
printf ("%d %s\n", ret, (char *) arg);
|
|
}
|
|
|
|
void cleanup4(int ret, void *arg)
|
|
{
|
|
printf ("%d %s\n", ret, (char *) arg);
|
|
}
|
|
|
|
void __attribute((destructor)) cleanup5(void)
|
|
{
|
|
printf ("cleanup5\n");
|
|
}
|
|
|
|
void test(void)
|
|
{
|
|
atexit(cleanup1);
|
|
atexit(cleanup2);
|
|
on_exit(cleanup3, "cleanup3");
|
|
on_exit(cleanup4, "cleanup4");
|
|
}
|
|
|
|
#if defined test_128_return
|
|
int main(int argc, char **argv)
|
|
{
|
|
test();
|
|
return 1;
|
|
}
|
|
|
|
#elif defined test_128_exit
|
|
int main(int argc, char **argv)
|
|
{
|
|
test();
|
|
exit(2);
|
|
}
|
|
#endif
|