Open oancasdis opened 1 year ago
Wondering what is your OS and GCC version
My operating system is linux ubuntu 22.04 and the version of gcc is 11.3.0.
ubuntu 20.04 gcc 9.4.0 also fail to complie it.
My operating system is linux ubuntu 22.04 and the version of gcc is 11.3.0.
I have the same issue
Did anyone manage to solve this problem? I am also encountering it.
yes, I needed to import <thread>
:
diff --git a/flashroute/dump_result.h b/flashroute/dump_result.h
index b0876ea..7e2c0dc 100644
--- a/flashroute/dump_result.h
+++ b/flashroute/dump_result.h
@@ -3,6 +3,7 @@
#include <memory>
#include <string>
+#include <thread>
#include <boost/asio.hpp>
#include <boost/process.hpp>
afterwards I compiled it with:
bazel build --cxxopt="--std=c++14" --compilation_mode=opt --sandbox_debug flashroute
I try to install the application but I can not solve this error to be able to use the application. Does anyone know the solution?