mirror of
https://github.com/odriverobotics/ODrive.git
synced 2026-09-25 02:47:27 +08:00
Merge remote-tracking branch 'upstream/devel' into A_to_Nm
This commit is contained in:
@@ -7,9 +7,9 @@ tup.include('build.lua')
|
||||
-- On some systems this may return a python2 command if Python3 is not installed.
|
||||
function find_python3()
|
||||
success, python_version = run_now("python --version")
|
||||
if success and string.match(python_version, "Python 3") then return "python" end
|
||||
if success and string.match(python_version, "Python 3") then return "python -B" end
|
||||
success, python_version = run_now("python3 --version")
|
||||
if success and string.match(python_version, "Python 3") then return "python3" end
|
||||
if success and string.match(python_version, "Python 3") then return "python3 -B" end
|
||||
error("Python 3 not found.")
|
||||
end
|
||||
|
||||
|
||||
@@ -82,6 +82,7 @@ public:
|
||||
#include <tuple>
|
||||
#include <functional>
|
||||
#include <unordered_map>
|
||||
#include <ostream>
|
||||
|
||||
/* Backport features from C++14 and C++17 ------------------------------------*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user