You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm pretty sure that this is not worth the trouble that it would take to fix, but OSX does not understand time -f "%e" thereby causing make check to fail.
There are two possible ways for a user to fix this.
Change the line in makefile.subdirs from @time -f "%e" $< to @time $<. This gives slightly messier output.
Download gnu-time from homebrew and change the line to @gtime -f "%e" $<.
Hopefully this note can save someone a bit of time.
The text was updated successfully, but these errors were encountered:
Is there some easy way to detect OSX in the makefile and then simply change the command to @time $<? Or just run the test without timing output; it's not really essential.
I'm pretty sure that this is not worth the trouble that it would take to fix, but OSX does not understand
time -f "%e"
thereby causingmake check
to fail.There are two possible ways for a user to fix this.
@time -f "%e" $<
to@time $<
. This gives slightly messier output.@gtime -f "%e" $<
.Hopefully this note can save someone a bit of time.
The text was updated successfully, but these errors were encountered: