Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2016-03-16 19:21:19 +0000
committerEugene Tarassov2016-03-16 19:21:19 +0000
commit0e0d4cf577e50e2cf4861bcd38697ebdc6ebc2ac (patch)
tree3c617833ce1923b417e1395aa144a98e23b0dae8 /agent/system/GNU/Linux/tcf/context-linux.c
parenta39644fbcd864ca93ba2033f7ac36e1f742db22d (diff)
downloadorg.eclipse.tcf.agent-0e0d4cf577e50e2cf4861bcd38697ebdc6ebc2ac.tar.gz
org.eclipse.tcf.agent-0e0d4cf577e50e2cf4861bcd38697ebdc6ebc2ac.tar.xz
org.eclipse.tcf.agent-0e0d4cf577e50e2cf4861bcd38697ebdc6ebc2ac.zip
TCF Agent: fixed Linux PPC64 build error and missing disassembler
Diffstat (limited to 'agent/system/GNU/Linux/tcf/context-linux.c')
-rw-r--r--agent/system/GNU/Linux/tcf/context-linux.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/agent/system/GNU/Linux/tcf/context-linux.c b/agent/system/GNU/Linux/tcf/context-linux.c
index 92d57abb..ea2e1eb5 100644
--- a/agent/system/GNU/Linux/tcf/context-linux.c
+++ b/agent/system/GNU/Linux/tcf/context-linux.c
@@ -1104,8 +1104,10 @@ int context_get_isa(Context * ctx, ContextAddress addr, ContextISA * isa) {
isa->def = "ARM";
#elif defined(__aarch64__)
isa->def = "A64";
+#elif defined(__powerpc64__)
+ isa->def = "PPC64";
#elif defined(__powerpc__)
- isa->def = "PowerPC";
+ isa->def = "PPC";
#else
isa->def = NULL;
#endif

Back to the top