diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-12-17 16:01:36 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-12-18 10:29:34 +0100 |
commit | c7b53c03ae7f7feb45a6023ee5cf764025ebb5e1 (patch) | |
tree | ca0d74f1ca3c3fd1c36a656493b22adebf3d14bf /thirdparty/rvo2 | |
parent | 5332d212f9bc0932544156d1fa1f568bf4ae24a8 (diff) |
SCons: Add explicit dependencies on thirdparty code in cloned env
Since we clone the environments to build thirdparty code, we don't get an
explicit dependency on the build objects produced by that environment.
So when we update thirdparty code, Godot code using it is not necessarily
rebuilt (I think it is for changed headers, but not for changed .c/.cpp files),
which can lead to an invalid compilation output (linking old Godot .o files
with a newer, potentially ABI breaking version of thirdparty code).
This was only seen as really problematic with bullet updates (leading to
crashes when rebuilding Godot after a bullet update without cleaning .o files),
but it's safer to fix it everywhere, even if it's a LOT of hacky boilerplate.
Diffstat (limited to 'thirdparty/rvo2')
-rw-r--r-- | thirdparty/rvo2/API.h (renamed from thirdparty/rvo2/src/API.h) | 0 | ||||
-rw-r--r-- | thirdparty/rvo2/Agent.cpp (renamed from thirdparty/rvo2/src/Agent.cpp) | 0 | ||||
-rw-r--r-- | thirdparty/rvo2/Agent.h (renamed from thirdparty/rvo2/src/Agent.h) | 0 | ||||
-rw-r--r-- | thirdparty/rvo2/Definitions.h (renamed from thirdparty/rvo2/src/Definitions.h) | 0 | ||||
-rw-r--r-- | thirdparty/rvo2/KdTree.cpp (renamed from thirdparty/rvo2/src/KdTree.cpp) | 0 | ||||
-rw-r--r-- | thirdparty/rvo2/KdTree.h (renamed from thirdparty/rvo2/src/KdTree.h) | 0 | ||||
-rw-r--r-- | thirdparty/rvo2/Vector3.h (renamed from thirdparty/rvo2/src/Vector3.h) | 0 |
7 files changed, 0 insertions, 0 deletions
diff --git a/thirdparty/rvo2/src/API.h b/thirdparty/rvo2/API.h index c64efb452c..c64efb452c 100644 --- a/thirdparty/rvo2/src/API.h +++ b/thirdparty/rvo2/API.h diff --git a/thirdparty/rvo2/src/Agent.cpp b/thirdparty/rvo2/Agent.cpp index 851d780758..851d780758 100644 --- a/thirdparty/rvo2/src/Agent.cpp +++ b/thirdparty/rvo2/Agent.cpp diff --git a/thirdparty/rvo2/src/Agent.h b/thirdparty/rvo2/Agent.h index 16f75a08f6..16f75a08f6 100644 --- a/thirdparty/rvo2/src/Agent.h +++ b/thirdparty/rvo2/Agent.h diff --git a/thirdparty/rvo2/src/Definitions.h b/thirdparty/rvo2/Definitions.h index a73aca9908..a73aca9908 100644 --- a/thirdparty/rvo2/src/Definitions.h +++ b/thirdparty/rvo2/Definitions.h diff --git a/thirdparty/rvo2/src/KdTree.cpp b/thirdparty/rvo2/KdTree.cpp index bc224614f0..bc224614f0 100644 --- a/thirdparty/rvo2/src/KdTree.cpp +++ b/thirdparty/rvo2/KdTree.cpp diff --git a/thirdparty/rvo2/src/KdTree.h b/thirdparty/rvo2/KdTree.h index 1dbad00ea4..1dbad00ea4 100644 --- a/thirdparty/rvo2/src/KdTree.h +++ b/thirdparty/rvo2/KdTree.h diff --git a/thirdparty/rvo2/src/Vector3.h b/thirdparty/rvo2/Vector3.h index 8c8835c865..8c8835c865 100644 --- a/thirdparty/rvo2/src/Vector3.h +++ b/thirdparty/rvo2/Vector3.h |