-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build error on macOS 14.3.1 (23D60) (Apple Silicon) #52
Comments
It's probably an issue with the |
Thanks, I tried to blindly fix it without knowing much about it. That seems to do the trick, there's some other instances though where I wasn't able to figure it out so I'll leave that for someone else more familiar with it.
|
I'll poke the Edgio folks, but what if they changed this line to: diff --git a/src/core/support/time_util.cc b/src/core/support/time_util.cc
index fd93a34..a1a6070 100644
--- a/src/core/support/time_util.cc
+++ b/src/core/support/time_util.cc
@@ -46,7 +46,7 @@ __thread char g_last_date_str[128];
static __inline__ uint64_t get_rdtsc64()
{
uint64_t tm;
-#if defined(__arm__) && defined(__linux__)
+#if defined(__arm__)
struct timespec ts;
clock_gettime(CLOCK_REALTIME, &ts);
tm = ts.tv_sec; To force everything |
Hey, I followed the instructions from the README, but it seems that something isn't working correctly.
The text was updated successfully, but these errors were encountered: