mangle: { mangle = { toplevel: true, } input: { var e = eval, x = 42; (function() { console.log(e("typeof x")); })(); } expect: { var e = eval, x = 42; (function() { console.log(e("typeof x")); })(); } expect_stdout: true } compress: { options = { collapse_vars: true, inline: true, unused: true, } input: { console.log(function() { var a = 42; return eval("typeof a"); }(), function(e) { var a = null; return e("typeof a"); }(eval), function(eval) { var a = false; return eval("typeof a"); }(eval), function(f) { var a = "STRING"; var eval = f; return eval("typeof a"); }(eval), function(g) { var a = eval; function eval() { return g; } return eval()("typeof a"); }(eval)); } expect: { console.log(function() { var a = 42; return eval("typeof a"); }(), (0, eval)("typeof a"), function(eval) { var a = false; return eval("typeof a"); }(eval), function(f) { var a = "STRING"; var eval = f; return eval("typeof a"); }(eval), function(g) { var a = eval; function eval() { return g; } return eval()("typeof a"); }(eval)); } expect_stdout: "number undefined boolean string undefined" } call_arg_1: { mangle = { toplevel: true, } input: { var z = "foo"; (function() { var z = false; (function(e) { var z = 42; e("console.log(typeof z)"); })(eval); })(); } expect: { var z = "foo"; (function() { var o = false; (function(o) { var a = 42; o("console.log(typeof z)"); })(eval); })(); } expect_stdout: true } call_arg_2: { mangle = { toplevel: true, } input: { function eval() { console.log("PASS"); } var z = "foo"; (function() { var z = false; (function(e) { var z = 42; e("console.log(typeof z)"); })(eval); })(); } expect: { function n() { console.log("PASS"); } var o = "foo"; (function() { var o = false; (function(o) { var n = 42; o("console.log(typeof z)"); })(n); })(); } expect_stdout: "PASS" } Detect vector instructions at run time....* gnu/packages/digest.scm (xxhash)[arguments]: Set DISPATCH=1 make flag on x86. Tobias Geerinckx-Rice 2020-06-29gnu: xxhash: Update to 0.7.4....* gnu/packages/digest.scm (xxhash): Update to 0.7.4. Tobias Geerinckx-Rice 2020-06-29gnu: xxhash: Cross-compile....* gnu/packages/digest.scm (xxhash)[arguments]: Use CC-FOR-TARGET. Tobias Geerinckx-Rice 2020-03-11gnu: xxHash: Update to 0.7.3....* gnu/packages/digest.scm (xxhash): Update to 0.7.3. Leo Famulari 2019-12-23gnu: xxhash: Update to 0.7.2....* gnu/packages/digest.scm (xxhash): Update to 0.7.2. [arguments]: Run ‘make check’ in parallel. Tobias Geerinckx-Rice 2019-11-10gnu: Add 'file-name' where appropriate....* gnu/packages/admin.scm (detox, neofetch), gnu/packages/algebra.scm (python-fpylll), gnu/packages/bioinformatics.scm (tbsp, genrich), gnu/packages/crypto.scm (hpenc), gnu/packages/digest.scm (xxhash), gnu/packages/emacs-xyz.scm (emacs-tiny, emacs-ergoemacs-mode, emacs-make-it-so, emacs-poet-theme, emacs-deft, emacs-scribble-mode, emacs-helm-mu, emacs-unidecode, emacs-diff-hl, emacs-helm-exwm, emacs-gif-screencast, emacs-exec-path-from-shell), gnu/packages/engineering.scm (gpx), gnu/packages/freedesktop.scm (waylandpp), gnu/packages/golang.scm (go-github-com-sirupsen-logrus, go-github-com-shirou-gopsutil), gnu/packages/guile-xyz.scm (guile-studio, guile-picture-language, jupyter-guile-kernel), gnu/packages/image-viewers.scm (qview), gnu/packages/java-maths.scm (java-jblas), gnu/packages/llvm.scm (libclc), gnu/packages/logging.scm (spdlog), gnu/packages/ocaml.scm (ocaml-cstruct, ocaml-zarith), gnu/packages/terminals.scm (libtsm), gnu/packages/tigervnc.scm (tigervnc-client), gnu/packages/xdisorg.scm (xcalib, xbanish) [source]: Add file-name. Efraim Flashner