aboutsummaryrefslogtreecommitdiffhomepage
path: root/hostconfig.h
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2026-01-01 12:00:33 +0100
committerlemon <lsof@mailbox.org>2026-01-01 12:01:45 +0100
commit93194ef8447718ae78b345ce0a920bb5e6fdc090 (patch)
tree34551543dffff4b53e66ffb94839cddc70810568 /hostconfig.h
parentd7203ea5f46fef1b41ba3b32c0b9313df3b3740c (diff)
Use a configure script, query system toolchain for default include paths
Diffstat (limited to 'hostconfig.h')
-rw-r--r--hostconfig.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/hostconfig.h b/hostconfig.h
deleted file mode 100644
index b333ad2..0000000
--- a/hostconfig.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef HOST_CONFIG_H
-#define HOST_CONFIG_H
-
-#if defined __x86_64 || defined __x86_64__
-#define HOST_ARCH ISx86_64
-#else
-#define HOST_ARCH ISxxx
-#endif
-
-#if defined __linux__
-#define HOST_OS OSlinux
-#else
-#define HOST_OS OSunknown
-#endif
-
-#if defined __linux__
-#define HOST_ABI ABIgnu
-#else
-#define HOST_ABI ABInone
-#endif
-
-#ifndef HOST_INCLUDE_DIRS
-#define HOST_INCLUDE_DIRS "/usr/include", "/usr/local/include"
-#endif
-
-#endif
-