summaryrefslogtreecommitdiff
path: root/tools/common/target_detect.h
diff options
context:
space:
mode:
authorJohn Hodge (Mutabah) <acessdev@gmail.com>2018-11-18 14:34:24 +0800
committerGitHub <noreply@github.com>2018-11-18 14:34:24 +0800
commit61d7669269529ea65a7dc797c0db2f84a05fc7b8 (patch)
tree7e4e32ecdc1ef816adf51cb291f57d27ef99071e /tools/common/target_detect.h
parenta56ce2ac8c99f8622da26bf3677286400c4bbec4 (diff)
parentad1cec3df31470a1b97f1c672a45ae57495945a5 (diff)
downloadmrust-61d7669269529ea65a7dc797c0db2f84a05fc7b8.tar.gz
Merge pull request #92 from glaubitz/m68k
Trans - Add initial support for m68k
Diffstat (limited to 'tools/common/target_detect.h')
-rw-r--r--tools/common/target_detect.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/common/target_detect.h b/tools/common/target_detect.h
index a4c44ba4..0812c363 100644
--- a/tools/common/target_detect.h
+++ b/tools/common/target_detect.h
@@ -24,6 +24,8 @@
# define DEFAULT_TARGET_NAME "arm-linux-gnu"
# elif defined(__i386__)
# define DEFAULT_TARGET_NAME "i586-linux-gnu"
+# elif defined(__m68k__)
+# define DEFAULT_TARGET_NAME "m68k-linux-gnu"
# else
# warning "Unable to detect a suitable default target (linux-gnu)"
# endif