Changeset de6b301 in mainline for arch/ppc32
- Timestamp:
- 2006-03-12T18:27:33Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f972b89
- Parents:
- a82500ce
- Location:
- arch/ppc32
- Files:
-
- 3 edited
-
Makefile.inc (modified) (1 diff)
-
include/elf.h (modified) (2 diffs)
-
include/types.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/Makefile.inc
ra82500ce rde6b301 41 41 LFLAGS += -no-check-sections -N 42 42 43 DEFS += -D__32_BITS__ 44 43 45 ## Own configuration directives 44 46 # -
arch/ppc32/include/elf.h
ra82500ce rde6b301 27 27 */ 28 28 29 #ifndef __ia32_ELF_H__ 30 #define __ia32_ELF_H__ 31 32 #include <elf32.h> 29 #ifndef __ppc32_ELF_H__ 30 #define __ppc32_ELF_H__ 33 31 34 32 #define ELF_MACHINE EM_PPC … … 36 34 #define ELF_CLASS ELFCLASS32 37 35 38 /*39 * Main ELF loader function40 */41 #define elf_load(header, as) elf32_load(header, as)42 43 36 #endif -
arch/ppc32/include/types.h
ra82500ce rde6b301 33 33 34 34 typedef signed char __s8; 35 typedef signed short __s16; 36 typedef signed long __s32; 37 typedef signed long long __s64; 35 38 36 39 typedef unsigned char __u8; 37 40 typedef unsigned short __u16; 38 41 typedef unsigned long __u32; 39 typedef long long __u64;42 typedef unsigned long long __u64; 40 43 41 44 typedef __u32 __address;
Note:
See TracChangeset
for help on using the changeset viewer.
