[LLVMbugs] [Bug 274] NEW: [JIT] Programs cannot resolve the fstat function
bugzilla-daemon at cs.uiuc.edu
bugzilla-daemon at cs.uiuc.edu
Mon Mar 8 17:23:18 PST 2004
http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=274
Summary: [JIT] Programs cannot resolve the fstat function
Product: libraries
Version: 1.0
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Target-Independent JIT
AssignedTo: unassignedbugs at nondot.org
ReportedBy: sabre at nondot.org
Programs that use the 'fstat' function (such as GNU m4) are failing to work with
the JIT, because dlsym is apparently failing on it or something.
Here's a small testcase:
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main() {
struct stat SB;
return fstat(1, &SB);
}
$ llvmgcc test.c -c -o - | lli
WARNING: Cannot resolve fn '__main' using a dummy noop function instead!
WARNING: Cannot resolve fn 'fstat' using a dummy noop function instead!
Note that the __main warning is expected, but the fstat one is not.
-Chris
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
More information about the llvm-bugs
mailing list