diff options
author | Merry <[email protected]> | 2021-08-07 15:13:38 +0100 |
---|---|---|
committer | Merry <[email protected]> | 2021-08-07 15:13:49 +0100 |
commit | 07b5734fb019a219d0c42e5f208417ee625f7ab6 (patch) | |
tree | b0cc6c1b3b804bb53855b76fd134936e314bc67a /tests | |
parent | 31cefb22a0282c0d6b96867cd67742c42984240c (diff) | |
download | dynarmic-07b5734fb019a219d0c42e5f208417ee625f7ab6.tar.gz dynarmic-07b5734fb019a219d0c42e5f208417ee625f7ab6.zip |
xbyak: Correct xbyak include directory
xbyak is intended to be installed in /usr/local/include/xbyak.
Since we desire not to install xbyak before using it, we copy the headers
to the appropriate directory structure and use that instead
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cpu_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpu_info.cpp b/tests/cpu_info.cpp index a3cfe902..914c9dd1 100644 --- a/tests/cpu_info.cpp +++ b/tests/cpu_info.cpp @@ -7,7 +7,7 @@ #include <utility> #include <catch.hpp> -#include <xbyak_util.h> +#include <xbyak/xbyak_util.h> TEST_CASE("Host CPU supports", "[a64]") { Xbyak::util::Cpu cpu_info; |