comparison gcc/config/pdp11/t-pdp11 @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 # Copyright (C) 1995-2018 Free Software Foundation, Inc. 1 # Copyright (C) 1995-2020 Free Software Foundation, Inc.
2 # 2 #
3 # This file is part of GCC. 3 # This file is part of GCC.
4 # 4 #
5 # GCC is free software; you can redistribute it and/or modify 5 # GCC is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by 6 # it under the terms of the GNU General Public License as published by
16 # along with GCC; see the file COPYING3. If not see 16 # along with GCC; see the file COPYING3. If not see
17 # <http://www.gnu.org/licenses/>. 17 # <http://www.gnu.org/licenses/>.
18 18
19 MULTILIB_OPTIONS = msoft-float 19 MULTILIB_OPTIONS = msoft-float
20 20
21 # Optimize for space
22 LIBGCC2_CFLAGS = -Os
23 CRTSTUFF_T_CFLAGS = -Os
24
21 # Because the pdp11 POINTER_SIZE is only 16, in dwarf2out.c, 25 # Because the pdp11 POINTER_SIZE is only 16, in dwarf2out.c,
22 # DWARF_ARANGES_PAD_SIZE is 0, thus a loop in output_aranges that checks 26 # DWARF_ARANGES_PAD_SIZE is 0, thus a loop in output_aranges that checks
23 # (i < (unsigned) DWARF_ARANGES_PAD_SIZE) elicits a warning that the 27 # (i < (unsigned) DWARF_ARANGES_PAD_SIZE) elicits a warning that the
24 # comparison is always false. 28 # comparison is always false.
25 # We could say "-Werror -Wno-error=type-limits", alas, not all supported 29 # We could say "-Werror -Wno-error=type-limits", alas, not all supported