diff options
author | camthesaxman <camthesaxman@users.noreply.github.com> | 2020-01-30 01:57:36 -0600 |
---|---|---|
committer | camthesaxman <camthesaxman@users.noreply.github.com> | 2020-01-30 01:57:36 -0600 |
commit | d8bdbc027f5ef265669feb49270c6c8c32c7cfe2 (patch) | |
tree | bc7583dc5f5c8e02d7dfb6f51a274aa21518c74b /gcc_arm/toplev.c | |
parent | 187c8b25084676c42000bfa845046fde1b87ccde (diff) |
make ARM compiler build on Windows
Diffstat (limited to 'gcc_arm/toplev.c')
-rwxr-xr-x | gcc_arm/toplev.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gcc_arm/toplev.c b/gcc_arm/toplev.c index a4a507d..b9123b9 100755 --- a/gcc_arm/toplev.c +++ b/gcc_arm/toplev.c @@ -30,14 +30,6 @@ Boston, MA 02111-1307, USA. */ #include <signal.h> #include <setjmp.h> -#ifdef HAVE_SYS_RESOURCE_H -# include <sys/resource.h> -#endif - -#ifdef HAVE_SYS_TIMES_H -# include <sys/times.h> -#endif - #include "input.h" #include "tree.h" #include "rtl.h" @@ -63,6 +55,9 @@ Boston, MA 02111-1307, USA. */ #include "dwarf2out.h" #endif +#undef SDB_DEBUGGING_INFO +#undef DBX_DEBUGGING_INFO + #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO) #include "dbxout.h" #endif |