amosbird commented on a change in pull request #7712:
URL: https://github.com/apache/incubator-doris/pull/7712#discussion_r783621980



##########
File path: be/src/glibc-compatibility/musl/eventfd.c
##########
@@ -0,0 +1,23 @@
+#include <sys/eventfd.h>
+#include <unistd.h>
+#include <errno.h>
+#include "syscall.h"
+
+int eventfd(unsigned int count, int flags)
+{
+       int r = __syscall(SYS_eventfd2, count, flags);
+#ifdef SYS_eventfd
+       if (r==-ENOSYS && !flags) r = __syscall(SYS_eventfd, count);

Review comment:
       It seems `apache/incubator-doris:build-env-latest` has prebuilt 
thirparty blobs. This PR introduces some tweaks along with a new lib `libidn`. 
Perhaps it's a good time to rebuilt the dev image with new toolchains.
   
   ```
   thirdparty/patches/googletest-release-1.11.0.patch |  71 ++++++++++
   thirdparty/patches/libevent.patch                  |  11 ++
   thirdparty/patches/rocksdb-5.14.2.patch            |  11 ++
   ```
   




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to