We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I find myself frequently needing to generate a µs precision timestamp.
some-target : @echo Microseconds: $(call now,micros) @echo Milliseconds: $(call now,millis) @echo Seconds: $(call now,secs) @echo Default precision (millis): $(call now)
$ make some-target Microseconds: 1693049901575259 Milliseconds: 1693049901575 Seconds: 1693049902 Default precision (millis): 1693049901575
This can be used to name log files or to prefix log entries w/ an accurate timestamp.
❓ The question is, is it a common enough use-cases to be included in bmakelib?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I find myself frequently needing to generate a µs precision timestamp.
This can be used to name log files or to prefix log entries w/ an accurate timestamp.
❓ The question is, is it a common enough use-cases to be included in bmakelib?
See also
The text was updated successfully, but these errors were encountered: