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
使用mingw64 gcc13.2 (Windows 11),运行 ruapu_init() 后会让std::chrono无法正确计算时间,返回nan
ruapu_init()
std::chrono
nan
mingw64 Clang也有问题, 详见godbolt
I'm using mingw64 with gcc 13.2 (Windows 11), and run ruapu_init() will make std::chrono clock return nan.
mingw64 with Clang also has this issue, example in godbolt
#include <chrono> #include <cstdio> #define RUAPU_IMPLEMENTATION #include "ruapu.h" struct Timer { std::chrono::time_point<std::chrono::high_resolution_clock> start = std::chrono::high_resolution_clock::now(); ~Timer() { auto end = std::chrono::high_resolution_clock::now(); std::chrono::duration<double, std::milli> duration = end - start; std::printf("Timer took %lfms\n", duration.count()); } }; int main() { ruapu_init(); { Timer timer{}; } return 0; }
The text was updated successfully, but these errors were encountered:
confirmed
Sorry, something went wrong.
clear mmx state after mmx procedures, fix #94
840184b
cdaa2cc
修好了,请测试下 #95
a256b24
No branches or pull requests
使用mingw64 gcc13.2 (Windows 11),运行
ruapu_init()
后会让std::chrono
无法正确计算时间,返回nan
mingw64 Clang也有问题, 详见godbolt
I'm using mingw64 with gcc 13.2 (Windows 11), and run
ruapu_init()
will makestd::chrono
clock returnnan
.mingw64 with Clang also has this issue, example in godbolt
The text was updated successfully, but these errors were encountered: