Add back std.sh3. For now it contains obvious EXEC_* options and

CPU_IN_CKSUM.

Introduce std.sh3e{b,l} that include std.sh3 and just add
corresponding endianness options.
This commit is contained in:
uwe 2008-02-02 03:06:04 +00:00
parent 9b6c682b45
commit a82100c2ca
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# $NetBSD: std.sh3,v 1.6 2008/02/02 03:06:04 uwe Exp $
#
# standard, required NetBSD/sh3 'options'
options EXEC_ELF32 # exec ELF binaries
options EXEC_SCRIPT # exec #! scripts
options CPU_IN_CKSUM # use assembler version of cpu_in_cksum()

View File

@ -0,0 +1,8 @@
# $NetBSD: std.sh3eb,v 1.1 2008/02/02 03:06:04 uwe Exp $
#
# standard, required NetBSD/sh3 'options' for big endian platforms
include "arch/sh3/conf/std.sh3" # endian-independent sh3 options
makeoptions ENDIAN="-EB"
makeoptions MACHINE_ARCH=sh3eb

View File

@ -0,0 +1,8 @@
# $NetBSD: std.sh3el,v 1.1 2008/02/02 03:06:04 uwe Exp $
#
# standard, required NetBSD/sh3 'options' for little endian platforms
include "arch/sh3/conf/std.sh3" # endian-independent sh3 options
makeoptions ENDIAN="-EL"
makeoptions MACHINE_ARCH=sh3el