.bashrc: rpmbuildlocal: +--with buildisa
authorJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 2 Feb 2016 13:51:36 +0000 (14:51 +0100)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 2 Feb 2016 13:53:11 +0000 (14:53 +0100)
$HISTSIZE: 100000->10000000
+$ASAN_OPTIONS=detect_leaks=0
$MAKEFLAGS: 1.5->1

.bashrc

diff --git a/.bashrc b/.bashrc
index 6397fe3..dc51f1d 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -149,7 +149,7 @@ eval '
        function vncreadonly { vncviewer -FullColor -Shared -ViewOnly "$@"; }
        function diff {(unset diff; ( diff -dup "$@"; ); );}
        $(: MAKEFLAGS= - "make install" does not expect -j and .spec files do not force -j1.)
-       function rpmbuildlocal { MAKEFLAGS= n rpmbuild --define "_topdir $PWD" --define "_builddir $PWD" --define "_rpmdir $PWD" --define "_sourcedir $PWD" --define "_specdir $PWD" --define "_srcrpmdir $PWD" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" "$@"; rmdir &>/dev/null BUILDROOT; }
+       function rpmbuildlocal { MAKEFLAGS= n rpmbuild --define "_topdir $PWD" --define "_builddir $PWD" --define "_rpmdir $PWD" --define "_sourcedir $PWD" --define "_specdir $PWD" --define "_srcrpmdir $PWD" --define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" --with buildisa "$@"; rmdir &>/dev/null BUILDROOT; }
        function gdbn { gdb -nx --command=~/.gdbinit "$@"; }
        function hd { od -Ax -tx1; }
        function wget {(unset wget; ( wget --no-check-certificate "$@"; ); );}
@@ -192,17 +192,20 @@ if [ -n "$PS1" ];then     # set only in interactive sessions
        # as it breaks keyboard state in X and it is not permitted for non-root.
 fi
 export MINICOM="-m -c on"      # metakeys+color
-export HISTSIZE=100000
+export HISTSIZE=10000000
 export HISTFILESIZE="$HISTSIZE"
 export GDBHISTFILE="$HOME/.gdb_history"
 export CVS_RSH="ssh"
 export TZ=":/usr/share/zoneinfo/Europe/Prague"
 #export TZ=":/usr/share/zoneinfo/Canada/Eastern"
 export PYTHONUNBUFFERED=1
+export ASAN_OPTIONS=detect_leaks=0
 export MAKEFLAGS=
 cpus="`getconf _NPROCESSORS_ONLN`"
 if [ -n "$cpus" ];then
-       MAKEFLAGS="$MAKEFLAGS -j$[$cpus*3/2]"
+       # *3/2 was OOM for host1 32 CPUs + 16GB RAM
+       # *1   was OK  for host1 32 CPUs + 16GB RAM
+       MAKEFLAGS="$MAKEFLAGS -j$[$cpus]"
 fi
 unset cpus
 # Do not: grep -w "$TERM" /etc/termcap >/dev/null || export TERM=vt220