Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Feb 2007 01:54:53 GMT
From:      Steven Hillis<evultrole@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   sparc64/109510: mcpu flags break buildworld in Sparc64 line
Message-ID:  <200702250154.l1P1srAJ021443@www.freebsd.org>
Resent-Message-ID: <200702250200.l1P20D8a023118@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         109510
>Category:       sparc64
>Synopsis:       mcpu flags break buildworld in Sparc64 line
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-sparc64
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Feb 25 02:00:12 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator:     Steven Hillis
>Release:        6.2
>Organization:
>Environment:
FreeBSD popp.tops 6.2-RELEASE-p1 FreeBSD 6.2-RELEASE-p1 #0: Sat Feb 24 14:15:14 PST 2007     steven@popp.tops:/usr/src/sys/sparc64/compile/MYKERN  sparc64

>Description:
Setting -mcpu=ultrasparc or -mcpu=v9 in /etc/make.conf causes "unknown architecture" errors on world or kernel builds.

Setting the flags overwrites the CPU_SPEC that's normally set to __sparc64__.
>How-To-Repeat:
Add -mcpu=ultrasparc to you CFLAGS= configuration in /etc/make.conf, then try to compile world or any kernel.
>Fix:
Apply the attached patch which adds the following to /usr/src/contrib/gcc/config/sparc/freebsd.h:

builtin_define ("__sparc64__");
builtin_define ("__sparc_v9__");
builtin_define ("__sparcv9");
builtin_define ("__arch64__");


Patch attached with submission follows:

*** contrib/gcc/config/sparc/freebsd.h	Tue Jul 27 22:00:13 2004
--- contrib/gcc/config/sparc/temp/freebsd.h	Sat Feb 24 16:56:33 2007
***************
*** 34,44 ****
  #undef  FBSD_TARGET_CPU_CPP_BUILTINS
  #define FBSD_TARGET_CPU_CPP_BUILTINS()		\
    do						\
      {						\
        builtin_define ("__LP64__");		\
!     }						\
    while (0)
  
  #define LINK_SPEC "%(link_arch)						\
    %{!mno-relax:%{!r:-relax}}						\
    %{p:%nconsider using `-pg' instead of `-p' with gprof(1)}				\
--- 34,48 ----
  #undef  FBSD_TARGET_CPU_CPP_BUILTINS
  #define FBSD_TARGET_CPU_CPP_BUILTINS()		\
    do						\
      {						\
        builtin_define ("__LP64__");		\
!       builtin_define ("__sparc64__");               \
!       builtin_define ("__sparc_v9__");              \
!       builtin_define ("__sparcv9");                 \
!       builtin_define ("__arch64__");          \
!      }						\
    while (0)
  
  #define LINK_SPEC "%(link_arch)						\
    %{!mno-relax:%{!r:-relax}}						\
    %{p:%nconsider using `-pg' instead of `-p' with gprof(1)}				\

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200702250154.l1P1srAJ021443>