Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2017-07-31 19:48:37 +0000
committerEugene Tarassov2017-07-31 19:48:37 +0000
commit9f7ade1be4d7d538af017d85d57088037cbdcf96 (patch)
tree0c4c4a0fa40a0c4ff5b6ee0996235194af8c9c2e
parentc6570c2093ef1f9559e4b617e485c8acb73fb728 (diff)
downloadorg.eclipse.tcf.agent-9f7ade1be4d7d538af017d85d57088037cbdcf96.tar.gz
org.eclipse.tcf.agent-9f7ade1be4d7d538af017d85d57088037cbdcf96.tar.xz
org.eclipse.tcf.agent-9f7ade1be4d7d538af017d85d57088037cbdcf96.zip
TCF Agent: more of GDB Remote Serial Protocol
-rw-r--r--agent/tcf/main/gdb-rsp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/agent/tcf/main/gdb-rsp.c b/agent/tcf/main/gdb-rsp.c
index ecb5dc61..81ee0915 100644
--- a/agent/tcf/main/gdb-rsp.c
+++ b/agent/tcf/main/gdb-rsp.c
@@ -1902,6 +1902,7 @@ int ini_gdb_rsp(const char * conf) {
if (strcmp(isa, "x86") == 0) isa = "i386";
if (strcmp(isa, "ia32") == 0) isa = "i386";
if (strcmp(isa, "x64") == 0) isa = "amd64";
+ if (strcmp(isa, "x86_64") == 0) isa = "amd64";
if (strcmp(isa, "a32") == 0) isa = "arm";
if (strcmp(isa, "a64") == 0) isa = "aarch64";
if (strcmp(isa, "ppc") == 0) isa = "powerpc";

Back to the top