[gem5-users] Re: syscall newfstatat (#262) unimplemented

2021-09-02 Thread Manas via gem5-users
On Thu, Sep 02, 2021 at 07:27:05PM -0700, Gabe Black via gem5-users wrote: > The standard library you're linking against is newer, and is using a system > call that gem5 doesn't implement. You'll either need to use an older > standard library, or implement that system call. If you're trying to run

[gem5-users] Re: syscall newfstatat (#262) unimplemented

2021-09-02 Thread Gabe Black via gem5-users
The standard library you're linking against is newer, and is using a system call that gem5 doesn't implement. You'll either need to use an older standard library, or implement that system call. If you're trying to run gem5's tests, then I know at least one of the x86 ones uses dynamic linking and l

[gem5-users] Re: syscall newfstatat (#262) unimplemented

2021-09-02 Thread Manas via gem5-users
Hi, I think while building gem5, I may have missed something. And I didn't realize it during testing the `hello` binary. Now, whenever any binary uses file operations (like `fopen`) then I get the following error: ``` build/X86/sim/syscall_emul.cc:66: fatal: syscall newfstatat (#262) unimplement