openpkg/dot.bash_login

Tue, 29 Mar 2011 20:04:34 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 29 Mar 2011 20:04:34 +0200
changeset 334
4a34d7a82eab
child 428
f880f219c566
permissions
-rw-r--r--

Rework package yet again, correcting and introducing new buildconf logic:
Conditionally disable bootstrap stage comparison correctly, correct
english grammar, better find system as(1) and ld(1), indotruce detailed
optimization option messages, more completely guess cpu types, allow
profiled bootstrapping without a preinstalled GCC because many other
compilers have long since implemented 64-bit arithmetic, instruct make
to build sequentially (not in sparallel) when building a profiled
bootstrap as GCC online documents recommend, and generally improve
comment blocks.

The single most important correction in this changeset relates to the
GCC changed optimization policy since at least GCC 4.5, in which -march
is always passed and not always correctly guessed. In the case of this
package, allowing GCC to guess the architecture leads to wild build
errors at various subcomponents (zlib, libgcc, libiberty...) and
bootstrap stages. It seems quite platform specific, and the safest
approach to correcting this seems to be explicitly always specifying the
-march argument when bootstrapping GCC. Because the best choice 'native'
is not available when bootstrapping using a foreign (non GCC) compiler,
a guess is made according to rpmmacros l_platform in that case.

It is questionable as to whether these recent optimization changes
on the part of GCC or this package are compatible with each other,
or if either are complete or correct at all. At least applying these
corrections allows this package to build again in most cases test.

michael@13 1 ##
michael@13 2 ## @l_prefix@/.bash_login -- Local Bash Login Script
michael@13 3 ##
michael@13 4
michael@13 5 # provide user and host information in default prompt
michael@13 6 PS1="\u@\h\$ "
michael@13 7
michael@13 8 # environment permissions
michael@13 9 umask 022
michael@13 10 ulimit -c 16384
michael@13 11
michael@13 12 # history functionality
michael@13 13 shopt -s histappend
michael@13 14 HISTSIZE=100
michael@13 15 HISTFILESIZE=100
michael@13 16
michael@13 17 # various additional variables
michael@13 18 export TMPDIR=/tmp
michael@13 19 export BLOCKSIZE=1024
michael@13 20
michael@13 21 # activate the bootstrapping Bourne-Shell
michael@13 22 # environment of the OpenPKG hierarchy
michael@13 23 eval `@l_prefix@/bin/openpkg rc --eval openpkg env`
michael@13 24
michael@13 25 # make sure some non-standard but usually
michael@13 26 # important executable directories are active
michael@13 27 test -d /usr/ccs/bin && PATH="$PATH:/usr/ccs/bin"
michael@13 28 test -d /usr/local/bin && PATH="$PATH:/usr/local/bin"
michael@13 29
michael@13 30 # initially adjust $PWD to symbolic path
michael@13 31 cd $HOME
michael@13 32
michael@13 33 # path to bash environment init script
michael@13 34 BASH_ENV=$HOME/.bashrc
michael@13 35
michael@13 36 # source the standard environment script
michael@13 37 . $BASH_ENV
michael@13 38

mercurial