Changeset 33f9670 in mainline
- Timestamp:
- 2012-06-10T10:13:11Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1d4024cf
- Parents:
- 652b776 (diff), 2689a0b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r652b776 r33f9670 255 255 @ "gcc_native" GNU C Compiler (native) 256 256 @ "icc" Intel C Compiler 257 @ "suncc" Sun Studio C Compiler258 257 @ "clang" Clang 259 258 ! [PLATFORM=amd64|PLATFORM=ia32] COMPILER (choice) … … 268 267 @ "gcc_cross" GNU C Compiler (cross-compiler) 269 268 @ "gcc_native" GNU C Compiler (native) 270 @ "suncc" Sun Studio C Compiler271 269 ! [PLATFORM=sparc64] COMPILER (choice) 272 270 -
boot/Makefile.build
r652b776 r33f9670 47 47 -Werror-implicit-function-declaration -wd170 48 48 49 SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \50 -xnolib -xc99=all -features=extensions \51 -erroff=E_ZERO_SIZED_STRUCT_UNION52 53 49 CLANG_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 54 50 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ … … 66 62 GCC_CFLAGS += -g 67 63 ICC_CFLAGS += -g 68 SUNCC_CFLAGS += -g69 64 CLANG_CFLAGS += -g 70 65 endif … … 83 78 CFLAGS = $(ICC_CFLAGS) $(EXTRA_CFLAGS) 84 79 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 85 endif86 87 ifeq ($(COMPILER),suncc)88 CFLAGS = $(SUNCC_CFLAGS) $(EXTRA_CFLAGS)89 DEFS += $(CONFIG_DEFS)90 DEPEND_DEFS = $(DEFS)91 80 endif 92 81 -
kernel/Makefile
r652b776 r33f9670 103 103 -Werror-implicit-function-declaration -wd170 104 104 105 SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \106 -xnolib -xc99=all -features=extensions \107 -erroff=E_ZERO_SIZED_STRUCT_UNION108 109 105 CLANG_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 110 106 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ … … 126 122 GCC_CFLAGS += -g 127 123 ICC_CFLAGS += -g 128 SUNCC_CFLAGS += -g129 124 CLANG_CFLAGS += -g 130 125 endif … … 180 175 CFLAGS = $(ICC_CFLAGS) 181 176 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 182 INSTRUMENTATION =183 endif184 185 ifeq ($(COMPILER),suncc)186 CFLAGS = $(SUNCC_CFLAGS)187 DEFS += $(CONFIG_DEFS)188 DEPEND_DEFS = $(DEFS)189 177 INSTRUMENTATION = 190 178 endif -
kernel/arch/amd64/Makefile.inc
r652b776 r33f9670 55 55 GCC_CFLAGS += $(CMN1) 56 56 ICC_CFLAGS += $(CMN1) 57 SUNCC_CFLAGS += -m64 -xmodel=kernel58 57 59 58 BITS = 64 … … 67 66 GCC_CFLAGS += $(CMN2) 68 67 ICC_CFLAGS += $(CMN2) 69 SUNCC_CFLAGS += -xtarget=opteron70 68 endif 71 69 -
kernel/arch/ia32/Makefile.inc
r652b776 r33f9670 38 38 GCC_CFLAGS += $(CMN1) 39 39 ICC_CFLAGS += $(CMN1) 40 SUNCC_CFLAGS += $(CMN1)41 40 CLANG_CFLAGS += $(CMN1) 42 41 … … 50 49 ifeq ($(PROCESSOR),athlon_xp) 51 50 CMN2 = -march=athlon-xp 52 SUNCC_CFLAGS += -xarch=ssea53 51 endif 54 52 55 53 ifeq ($(PROCESSOR),athlon_mp) 56 54 CMN2 = -march=athlon-mp 57 SUNCC_CFLAGS += xarch=ssea58 55 endif 59 56 60 57 ifeq ($(PROCESSOR),pentium3) 61 58 CMN2 = -march=pentium3 62 SUNCC_CFLAGS += -xarch=sse63 59 endif 64 60 65 61 ifeq ($(PROCESSOR),pentium4) 66 62 CMN2 = -march=pentium4 67 SUNCC_CFLAGS += -xarch=sse268 63 endif 69 64 70 65 ifeq ($(PROCESSOR),core) 71 66 CMN2 = -march=prescott 72 SUNCC_CFLAGS += -xarch=sse373 67 endif 74 68 -
kernel/arch/sparc64/Makefile.inc
r652b776 r33f9670 32 32 33 33 GCC_CFLAGS += -m64 -mcpu=ultrasparc -mcmodel=medlow -mno-fpu 34 SUNCC_CFLAGS += -m64 -xarch=sparc -xregs=appl,no%float35 34 36 35 LFLAGS += -no-check-sections -
tools/autotool.py
r652b776 r33f9670 720 720 check_binutils(None, binutils_prefix, common, PACKAGE_BINUTILS) 721 721 722 if (config['COMPILER'] == "suncc"):723 common['CC'] = "suncc"724 check_app([common['CC'], "-V"], "Sun Studio Compiler", "support is experimental")725 check_gcc(None, "", common, PACKAGE_GCC)726 check_binutils(None, binutils_prefix, common, PACKAGE_BINUTILS)727 728 722 if (config['COMPILER'] == "clang"): 729 723 common['CC'] = "clang" -
uspace/Makefile.common
r652b776 r33f9670 207 207 GCC_CFLAGS += -g 208 208 ICC_CFLAGS += -g 209 SUNCC_CFLAGS += -g210 209 CLANG_CFLAGS += -g 211 210 endif
Note:
See TracChangeset
for help on using the changeset viewer.