- Timestamp:
- 2009-10-07T14:03:35Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2088dfc
- Parents:
- 7a53208
- Location:
- kernel
- Files:
-
- 8 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
r7a53208 r6ab8697 49 49 GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \ 50 50 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ 51 -finput-charset=UTF-8 -fno-builtin -Wall -Wextra -Wno-unused-parameter \ 52 -Wmissing-prototypes -Werror -nostdlib -nostdinc -pipe 51 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \ 52 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes -Werror \ 53 -pipe 53 54 54 55 ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \ 55 -f no-builtin -Wall -Wmissing-prototypes -Werror\56 - nostdlib -nostdinc-wd17056 -ffreestanding -fno-builtin -nostdlib -nostdinc -Wall -Wmissing-prototypes \ 57 -Werror -wd170 57 58 58 59 SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \ … … 62 63 CLANG_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \ 63 64 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ 64 -finput-charset=UTF-8 -fno-builtin -Wall -Wextra -Wno-unused-parameter \ 65 -Wmissing-prototypes -nostdlib -nostdinc -pipe 65 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \ 66 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes -pipe \ 67 -arch $(CLANG_ARCH) 66 68 67 69 LFLAGS = -M -
kernel/arch/amd64/Makefile.inc
r7a53208 r6ab8697 34 34 BFD = binary 35 35 TARGET = amd64-linux-gnu 36 CLANG_ARCH = x86_64 36 37 TOOLCHAIN_DIR = $(CROSS_PREFIX)/amd64 37 38 -
kernel/arch/ia32/Makefile.inc
r7a53208 r6ab8697 34 34 BFD = binary 35 35 TARGET = i686-pc-linux-gnu 36 CLANG_ARCH = i386 36 37 TOOLCHAIN_DIR = $(CROSS_PREFIX)/ia32 37 38 -
kernel/generic/include/print.h
r7a53208 r6ab8697 37 37 38 38 #include <arch/types.h> 39 #include < arch/arg.h>39 #include <stdarg.h> 40 40 41 41 #define EOF (-1) -
kernel/generic/include/printf/printf_core.h
r7a53208 r6ab8697 37 37 38 38 #include <typedefs.h> 39 #include < arch/arg.h>39 #include <stdarg.h> 40 40 41 41 /** Structure for specifying output methods for different printf clones. */ -
kernel/generic/include/stdarg.h
r7a53208 r6ab8697 27 27 */ 28 28 29 /** @addtogroup generic 29 /** @addtogroup generic 30 30 * @{ 31 31 */ … … 37 37 * for all architectures with compiler support for __builtin_va_*. 38 38 */ 39 39 40 40 #ifndef KERN_STDARG_H_ 41 41 #define KERN_STDARG_H_ … … 43 43 typedef __builtin_va_list va_list; 44 44 45 #define va_start(ap, last) 46 #define va_arg(ap, type) 47 #define va_end(ap) 48 #define va_copy(dst, src) 45 #define va_start(ap, last) __builtin_va_start(ap, last) 46 #define va_arg(ap, type) __builtin_va_arg(ap, type) 47 #define va_end(ap) __builtin_va_end(ap) 48 #define va_copy(dst, src) __builtin_va_copy(dst, src) 49 49 50 50 #endif -
kernel/generic/src/printf/printf_core.c
r7a53208 r6ab8697 39 39 #include <printf/printf_core.h> 40 40 #include <print.h> 41 #include < arch/arg.h>41 #include <stdarg.h> 42 42 #include <macros.h> 43 43 #include <string.h>
Note:
See TracChangeset
for help on using the changeset viewer.