summaryrefslogtreecommitdiff
path: root/tools/os_support.c
diff options
context:
space:
mode:
authorBin Meng <bin.meng@windriver.com>2020-04-18 11:59:09 +0300
committerTom Rini <trini@konsulko.com>2020-04-24 17:51:56 +0300
commit3b32cf096bd6b1d8871ecaddb4250756242fb5f9 (patch)
tree7561fd70ef6c8d7b8342db39e6ad3b5c7c8d433e /tools/os_support.c
parentae2b3e851025587e02eecf11e08cec3503c46bdb (diff)
downloadu-boot-3b32cf096bd6b1d8871ecaddb4250756242fb5f9.tar.xz
tools: Remove the out-of-date MinGW support codes
MinGW build for U-Boot tools has been broken for years. The official support of Windows build is now MSYS2. Remove the MinGW support codes. Signed-off-by: Bin Meng <bin.meng@windriver.com>
Diffstat (limited to 'tools/os_support.c')
-rw-r--r--tools/os_support.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/os_support.c b/tools/os_support.c
index 21e43c876a..6890c3183f 100644
--- a/tools/os_support.c
+++ b/tools/os_support.c
@@ -3,13 +3,12 @@
* Copyright 2009 Extreme Engineering Solutions, Inc.
*/
+#include "compiler.h"
+
/*
* Include additional files required for supporting different operating systems
*/
-#include "compiler.h"
-#ifdef __MINGW32__
-#include "mingw_support.c"
-#endif
+
#if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L
#include "getline.c"
#endif