Changeset 44bec47 in mainline for kernel/Makefile
- Timestamp:
- 2007-06-06T20:00:13Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3ee8a075
- Parents:
- 99373fe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
r99373fe r44bec47 34 34 -include Makefile.config 35 35 36 INCLUDES = generic/include 37 OPTIMIZATION = 3 38 36 39 ## Common compiler flags 37 40 # … … 40 43 -DKERNEL 41 44 42 GCC_CFLAGS = -fno-builtin -fomit-frame-pointer -Wall -Wmissing-prototypes \ 43 -Werror -O3 -nostdlib -nostdinc -Igeneric/include/ 44 45 SUNCC_CFLAGS = -xO3 -Igeneric/include/ -xnolib -xc99=all \ 45 GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) \ 46 -fno-builtin -fomit-frame-pointer -Wall -Wmissing-prototypes -Werror \ 47 -nostdlib -nostdinc 48 49 ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) \ 50 -fno-builtin -fomit-frame-pointer -Wall -Wmissing-prototypes -Werror \ 51 -nostdlib -nostdinc \ 52 -wd170 53 54 SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \ 55 -xnolib -xc99=all -xregs=no%float \ 46 56 -D__FUNCTION__=__func__ -features=extensions \ 47 57 -erroff=E_ZERO_SIZED_STRUCT_UNION 48 49 58 50 59 LFLAGS = -M … … 147 156 OBJDUMP = objdump 148 157 LIBDIR = /usr/lib 149 CFLAGS = $( GCC_CFLAGS)158 CFLAGS = $(ICC_CFLAGS) 150 159 endif 151 160
Note:
See TracChangeset
for help on using the changeset viewer.