diff options
author | 2020-08-12 18:54:22 +0200 | |
---|---|---|
committer | 2020-08-12 12:54:22 -0400 | |
commit | 65b0df8761dd7772149ac1608fe7109f8cc8e056 (patch) | |
tree | e1320a020ff8edad060b59350bbfc945417c8760 /src/devices/cpu/drcuml.cpp | |
parent | 139a9bd5f365b27d1e5127b74bfa7451c1e1eb45 (diff) |
Fix non-x86 build and try to make sure it does not break silently again (#7041)
* Do not build x64 DRC backend when C backend is forced
* New CI target (mametiny + kinst)
* Switch travis to CI target
* Switch appveyor to CI target
Diffstat (limited to 'src/devices/cpu/drcuml.cpp')
-rw-r--r-- | src/devices/cpu/drcuml.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/cpu/drcuml.cpp b/src/devices/cpu/drcuml.cpp index 0a1dcae9d02..e935913aceb 100644 --- a/src/devices/cpu/drcuml.cpp +++ b/src/devices/cpu/drcuml.cpp @@ -36,8 +36,10 @@ #include "emuopts.h" #include "drcbec.h" +#ifdef NATIVE_DRC #include "drcbex86.h" #include "drcbex64.h" +#endif #include <fstream> |