7fc9190f0e
* gcc is kept at -Np0, because of void-cross ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
11 lines
468 B
Diff
11 lines
468 B
Diff
--- a/src/History.cc 2017-10-02 10:23:46.000000000 +0200
|
|
+++ b/src/History.cc 2017-11-14 15:42:12.119849965 +0100
|
|
@@ -3828,7 +3828,7 @@
|
|
// mode_s += "Time: ";
|
|
// double t=double(clock());
|
|
// mode_s += xcas::print_DOUBLE_(t/CLOCKS_PER_SEC);
|
|
-#ifdef HAVE_MALLOC_H //
|
|
+#if defined HAVE_MALLOC_H && defined __GLIBC__ //
|
|
struct mallinfo mem=mallinfo();
|
|
double memd=mem.arena+mem.hblkhd;
|
|
mode_s +=xcas::print_DOUBLE_(memd/1048576);
|