Remove -pc from Sortix host triplet.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-09-07 13:07:42 +02:00
parent 9aba01cc82
commit 09c4f34e66
1 changed files with 3 additions and 3 deletions

View File

@ -376,12 +376,12 @@ static void InitThread(void* /*user*/)
int argc = 1; int argc = 1;
const char* argv[] = { "init", NULL }; const char* argv[] = { "init", NULL };
#if defined(PLATFORM_X86) #if defined(PLATFORM_X86)
const char* cputype = "cputype=i486-pc-sortix"; const char* cputype = "cputype=i486-sortix";
#elif defined(PLATFORM_X64) #elif defined(PLATFORM_X64)
const char* cputype = "cputype=x86_64-pc-sortix"; const char* cputype = "cputype=x86_64-sortix";
#else #else
#warning No cputype environmental variable provided here. #warning No cputype environmental variable provided here.
const char* cputype = "cputype=unknown-pc-sortix"; const char* cputype = "cputype=unknown-sortix";
#endif #endif
int envc = 1; int envc = 1;
const char* envp[] = { cputype, NULL }; const char* envp[] = { cputype, NULL };