Displaying 1 result from an estimated 1 matches for "fxstat64".
Did you mean:
fstat64
2007 Oct 19
0
[LLVMdev] Frontend incompatibility precluding use of llvm-gcc as a drop-in replacement of gcc
Hi,
I built llvm-gcc and tried to use it as drop-in replacement
of gcc. I attempted to build busybox with it. It choked on -std=gnu99.
Reduced testcase:
struct stat {};
struct stat64 {};
int fxstat(int n, int fd, struct stat *sb);
int fxstat64(int n, int fd, struct stat64 *sb);
extern int fstat(int fd, struct stat *buf) asm("fstat64");
extern inline int fstat(int fd, struct stat *sb) { return fxstat(3, fd, sb); }
extern inline int fstat64(int fd, struct stat64 *sb) { return
fxstat64(3, fd, sb); }
With llvm-gcc4.0-2.1:
gcc -fg...