system: Move cpu string to Factor area so it's more obvious that it applies to Factor and not to the C++ compiler.

db4
Doug Coleman 2014-11-12 03:33:19 -08:00
parent b377ea313c
commit 0f59f314f5
1 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
! Copyright (C) 2007, 2010 Slava Pestov.
! copyright (c) 2007, 2010 slava pestov.
! See http://factorcode.org/license.txt for BSD license.
USING: assocs continuations init io kernel kernel.private
layouts make math.parser namespaces sequences ;
USING: assocs continuations init io kernel kernel.private make
math.parser namespaces sequences ;
IN: system
SINGLETONS: x86.32 x86.64 arm ppc.32 ppc.64 ;
@ -68,11 +68,11 @@ PRIVATE>
! formatting vocab not available in this context.
[
"Factor " % vm-version %
" " % cell-bits #
"-bit build: " % build #
" " % cpu cpu>string %
" build: " % build #
" (" % vm-git-label % ", " %
vm-compile-time % ") [" %
vm-compiler % " " % cpu cpu>string % "] on " % os os>string %
vm-compiler % "] on " % os os>string %
] "" make ;
: exit ( n -- * )