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
One of the last few commits includes a change to throw a std::runtime_error but doesn't actually include <stdexcept> so make fails depending on the environment. Some of the commonly used std library headers used to include <stdexcept> so things like std::runtime_error may have been implicitly defined.
__@__:~/cave/gpu-burn$ make
g++ -O3 -Wno-unused-result -I/usr/local/cuda/include -c gpu_burn-drv.cpp
gpu_burn-drv.cpp: In function ‘int main(int, char**)’:
gpu_burn-drv.cpp:817:23: error: ‘runtime_error’ is not a member of ‘std’
throw std::runtime_error("No CUDA capable GPUs found.\n");
^
make: *** [gpu_burn-drv.o] Error 1
The text was updated successfully, but these errors were encountered:
One of the last few commits includes a change to throw a
std::runtime_error
but doesn't actually include<stdexcept>
somake
fails depending on the environment. Some of the commonly used std library headers used to include<stdexcept>
so things likestd::runtime_error
may have been implicitly defined.The text was updated successfully, but these errors were encountered: