From: Jan Kratochvil Date: Tue, 2 Feb 2016 13:51:36 +0000 (+0100) Subject: .bashrc: rpmbuildlocal: +--with buildisa X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=commitdiff_plain;h=e8f5860610f70af02ffe91fe4800530e71d06472 .bashrc: rpmbuildlocal: +--with buildisa $HISTSIZE: 100000->10000000 +$ASAN_OPTIONS=detect_leaks=0 $MAKEFLAGS: 1.5->1 --- diff --git a/.bashrc b/.bashrc index 6397fe3..dc51f1d 100644 --- 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