Re: [Boost-bugs] [Boost C++ Libraries] #11375: Support Request -- boost 1.58 bootstrap.sh failed on SunOS 5.10

Subject: Re: [Boost-bugs] [Boost C++ Libraries] #11375: Support Request -- boost 1.58 bootstrap.sh failed on SunOS 5.10
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2015-07-27 14:56:31


#11375: Support Request -- boost 1.58 bootstrap.sh failed on SunOS 5.10
-------------------------------+--------------------------------
  Reporter: chenbo369@… | Owner: vladimir_prus
      Type: Bugs | Status: new
 Milestone: To Be Determined | Component: build
   Version: Boost 1.58.0 | Severity: Problem
Resolution: | Keywords: bootstrap.sh SunOS
-------------------------------+--------------------------------

Comment (by makiolo@…):

 []
 Same here, my solution was:

 {{{
 --- boost_1_58_0/tools/build/src/engine/build.sh~ 2015-07-27
 15:39:31.215477000 +0200
 +++ boost_1_58_0/tools/build/src/engine/build.sh 2015-07-27
 15:41:00.309551000 +0200
 @@ -145,9 +145,9 @@ case $BOOST_JAM_TOOLSET in
      which icc >/dev/null 2>&1
      if test $? ;
         then
 - BOOST_JAM_CC=$(which icc)
 + BOOST_JAM_CC=`which icc`
         echo "Found $BOOST_JAM_CC in environment"
 - BOOST_JAM_TOOLSET_ROOT=$(echo $BOOST_JAM_CC | sed -e
 's/bin.*\/icc//')
 + BOOST_JAM_TOOLSET_ROOT=`echo $BOOST_JAM_CC | sed -e
 's/bin.*\/icc//'`
         # probably the most widespread
         ARCH=intel64
      else
 }}}

 A second and last problem in my case, was resolved with this:

 {{{
 --- boost_1_58_0/tools/build/src/tools/gcc.jam~ 2015-04-04
 19:25:07.000000000 +0200
 +++ boost_1_58_0/tools/build/src/tools/gcc.jam 2015-07-27
 16:47:32.743000000 +0200
 @@ -1138,7 +1138,7 @@ cpu-flags gcc OPTIONS : x86 : c3-2 : -ma
  ##
  cpu-flags gcc OPTIONS : x86 : atom : -march=atom ;
  # Sparc
 -cpu-flags gcc OPTIONS : sparc : c3 : -mcpu=c3 : default ;
 +cpu-flags gcc OPTIONS : sparc : c3 : -mcpu=c3 ;
  cpu-flags gcc OPTIONS : sparc : v7 : -mcpu=v7 ;
  cpu-flags gcc OPTIONS : sparc : cypress : -mcpu=cypress ;
  cpu-flags gcc OPTIONS : sparc : v8 : -mcpu=v8 ;
 @@ -1150,7 +1150,7 @@ cpu-flags gcc OPTIONS : sparc : f930 : -
  cpu-flags gcc OPTIONS : sparc : f934 : -mcpu=f934 ;
  cpu-flags gcc OPTIONS : sparc : sparclet : -mcpu=sparclet ;
  cpu-flags gcc OPTIONS : sparc : tsc701 : -mcpu=tsc701 ;
 -cpu-flags gcc OPTIONS : sparc : v9 : -mcpu=v9 ;
 +cpu-flags gcc OPTIONS : sparc : v9 : -mcpu=v9 : default ;
  cpu-flags gcc OPTIONS : sparc : ultrasparc : -mcpu=ultrasparc ;
  cpu-flags gcc OPTIONS : sparc : ultrasparc3 : -mcpu=ultrasparc3 ;
  # RS/6000 & PowerPC
 }}}

-- 
Ticket URL: <https://svn.boost.org/trac/boost/ticket/11375#comment:2>
Boost C++ Libraries <http://www.boost.org/>
Boost provides free peer-reviewed portable C++ source libraries.

This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:18 UTC