diff options
author | Bin Meng <bin.meng@windriver.com> | 2020-04-18 01:59:09 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-24 10:51:56 -0400 |
commit | 3b32cf096bd6b1d8871ecaddb4250756242fb5f9 (patch) | |
tree | 7561fd70ef6c8d7b8342db39e6ad3b5c7c8d433e /tools/os_support.c | |
parent | ae2b3e851025587e02eecf11e08cec3503c46bdb (diff) | |
download | u-boot-3b32cf096bd6b1d8871ecaddb4250756242fb5f9.tar.gz |
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.c | 7 |
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 |