On Fri, Sep 15, 2017 at 01:22:56PM +0000, Michael Fleischmann wrote:
> Is it possible to compile linuxptp-1.8 with glibc 2.6 at all?

If your glibc lacks those, then you can patch the code to use
syscall() to call into the kernel directly, for example:

        static inline int timerfd_create(int clockid, int flags)
        {
                return syscall(__NR_timerfd_create, clockid, flags);
        }

See missing.h to see how we do this for uClibc.

HTH,
Richard

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Linuxptp-users mailing list
Linuxptp-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxptp-users

Reply via email to