代码拉取完成,页面将自动刷新
同步操作将从 Ray/calltree 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
If your system uses the SVr4 ABI (designed by Motorola), you will only
be able to compile my library files lib/format.c and lib/getargs.c if your
C-compiler supports the macro va_copy() or __va_copy() from stdarg.h.
Mach/Next STep/Apple Rhapsody on ppc use a 'void *' for the type va_list
so you don't need to make changes on these systems.
Solaris/ppc (made in 1992) is the first UNIX implementation for the PPC.
It includes the va_copy() macro that allows you to assign a C object of the
type va_list in a system independent way.
Linux/ppc uses exactly the same construct as Solaris for the type va_list.
You will only be able to compile lib/format.c and lib/getargs.c if your
C-compiler includes the macro va_copy() or __va_copy(). If this is not the
case, you will need to upgrade your C-compiler first. GCC 2.8.0 and later
includes this macro.
Here is what Solaris /usr/include/sys/varargs.h looks like:
/*
* va_copy is a Solaris extension to provide a portable way to perform
* a variable argument list ``bookmarking'' function.
*/
#if defined(__ppc)
#define va_copy(to, from) ((to)[0] = (from)[0])
#else
#define va_copy(to, from) ((to) = (from))
#endif
To be able to compile my lib/format.c and lib/getargs.c on a OS
implementation that uses an array for va_list, you will need
this va_copy() enhancement too.
The files mentioned above already compile on a PPC Apple Rhapsody system.
But as mentioned before, Rhapsody uses a void * for va_list (maybe because
Apple includes badly designed international printf code from BSD 4.4
that requires va_list to be void * to work).
Notice: lib/format.c allows a %r format that needs additional features
in stdarg.h. You need to know whether va_list is an array.
I hope that GCC will include some definitions in future versions
that allow to propagate va_list type objects from var args
in function calls.
GCC
===
If you are not using GCC 2.8.0, you can add the following definition
to va-ppc.h :
/usr/lib/gcc-lib/*-linux-gnulibc1/2.*/include/va-ppc.h
#define va_copy(to, from) ((to)[0] = (from)[0])
and to all other va-*.h files:
#define va_copy(to, from) ((to) = (from))
Important: Check before if you don't have a GCC that is already patched.
Joerg
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。