From 0f59f314f54e007e5cf3425c8df32e89d37cf5b8 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 12 Nov 2014 03:33:19 -0800 Subject: [PATCH] system: Move cpu string to Factor area so it's more obvious that it applies to Factor and not to the C++ compiler. --- core/system/system.factor | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/system/system.factor b/core/system/system.factor index 5493dc13a1..24a0aadcf6 100644 --- a/core/system/system.factor +++ b/core/system/system.factor @@ -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 -- * )