Added sun4u architecture

This commit is contained in:
Pierre Pronchery 2006-06-16 01:57:25 +00:00
parent 6730960a57
commit b578a21768
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ const String * sHostArch[HA_LAST+1] =
{
"i386", "i486", "i586", "i686",
"sparc", "sparc64",
"sun4u",
"unknown"
};
const String * sHostOS[HO_LAST+1] =

View File

@ -13,6 +13,7 @@ typedef enum _HostArch
{
HA_I386 = 0, HA_I486, HA_I586, HA_I686,
HA_SPARC, HA_SPARC64,
HA_SUN4U,
HA_UNKNOWN
} HostArch;
# define HA_LAST HA_UNKNOWN