Commit Graph

14 Commits

Author SHA1 Message Date
Xi Ruoyao
96e0c17161
mozilla: Drop SHELL=/bin/bash
Note that if you build something relying on $SHELL, it may still fail to
build in chroot.

In the chroot we first use "env -i" to clean the environment variables.
When bash starts with no $SHELL set, it *sets* SHELL=(the login shell
of current user specified in /etc/passwd), but it *does not export this
variable*.

For example:

    $ cat > t.c << EOF
    #include <stdio.h>
    #include <stdlib.h>
    int main() { puts (getenv ("SHELL") ?: "(nullptr)"); }
    $ ./a.out
    /bin/zsh/
    $ cc t.c
    $ env -i bash -c "echo $SHELL"
    /bin/zsh
    $ env -i bash -c "./a.out"
    (nullptr)

We can remove this now only because Mozilla has added a workaround into
their building system at
https://hg.mozilla.org/mozilla-central/rev/5afe7b911f61 for some Mac
builder, inadvertently fixing our issue.

Link: https://lists.linuxfromscratch.org/sympa/arc/blfs-support/2014-11/msg00050.html
Link: https://lists.linuxfromscratch.org/sympa/arc/blfs-dev/2023-11/msg00136.html
2023-11-20 07:01:36 +08:00
Xi Ruoyao
c12fd0f517
spidermonkey: Enable rust SIMD optimization
Arch and Gentoo do this for Firefox, Thunderbird, and SpiderMonkey.
I've tested SpiderMonkey with this for a while.  I'll enable this
for Firefox and Thunderbird too after testing them.

Sort all the switches (but --prefix) and explanations in alphabetic
order by the way.
2023-11-03 17:49:35 +08:00
Xi Ruoyao
a192a33046
spidermonkey: Update the number of test failures for icu-74 2023-11-02 12:24:22 +08:00
Xi Ruoyao
fa5f6e9501
spidermonkey: Do not hard code python3-majorver 2023-11-01 21:42:53 +08:00
Xi Ruoyao
e3b2109589
spidermonkey: Work around build failure with Python 3.12 or later 2023-11-01 17:42:11 +08:00
Xi Ruoyao
e610b086f3
spidermonkey: Correct download size 2023-10-25 06:39:37 +08:00
Ken Moffat
ea5703f312 Package updates:
firefox-115.4.0.
spidermonkey-115.4.0.
2023-10-24 18:11:23 +01:00
Ken Moffat
4b795d34e4 Updated to spidermonkey-115.3.0. 2023-09-26 22:12:37 +01:00
Xi Ruoyao
7655d92ffa
spidermonkey: Update RAM usage issue in JIT test suite 2023-09-26 16:55:19 +08:00
Rahul Chandra
bcfaad0264 Typo fixes from rhubarbpieguy on blfs-dev 2023-09-21 19:02:48 -04:00
Douglas R. Reno
4490fe8b33 Spidermonkey: minor reword for JIT test suite description 2023-09-18 11:56:37 -05:00
Xi Ruoyao
30d8de9bd4
spidermonkey: Update command explanations 2023-09-18 14:38:19 +08:00
Xi Ruoyao
3ce2d0c7e6
Update SpiderMonkey to ESR 115
- Update to SpiderMonkey from Firefox-115.2.1
- Update to gjs-1.78.0
- Allow building polkit with SpiderMonkey from Firefox-115
2023-09-18 01:54:07 +08:00
Xi Ruoyao
5028839fa0
Rename js102 to spidermonkey 2023-09-18 00:55:11 +08:00