Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / mini / mini-arch.h
index 384ab9ebefc990b57da3dd77646356eb10bb2179..c49ed5a41d569c71627c295a89ac0de4365ac1aa 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file
+ */
+
 #ifndef __MONO_MINI_ARCH_H__
 #define __MONO_MINI_ARCH_H__
 
 # if defined(__s390x__)
 #  include "mini-s390x.h"
 # else
-#  include "mini-s390.h"
+#error "s390 is no longer supported."
 # endif
-#elif defined(__ia64__)
-#include "mini-ia64.h"
 #elif defined(TARGET_ARM)
 #include "mini-arm.h"
-#elif defined(__alpha__)
-#include "mini-alpha.h"
+#elif defined(TARGET_ARM64)
+#include "mini-arm64.h"
 #elif defined(__mips__)
 #include "mini-mips.h"
-#elif defined(__hppa__)
-#include "mini-hppa.h"
+#elif TARGET_WASM
+#include "mini-wasm.h"
 #else
 #error add arch specific include file in mini-arch.h
 #endif