Last active
August 18, 2025 10:25
-
-
Save CodeIter/ccdcc840e432288ef1e01cc15d66c048 to your computer and use it in GitHub Desktop.
Setup `glibc-runner` with pacman on Termux and install Deno.JS and Bun.JS .
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env -S bash -xeuo pipefail | |
| set -xeuo pipefail | |
| pkg install pacman patchelf \ | |
| which time ldd tree | |
| echo | |
| echo | |
| pacman-key --init | |
| echo | |
| echo | |
| pacman-key --populate | |
| echo | |
| echo | |
| pacman -Syu | |
| echo | |
| echo | |
| pacman -Sy glibc-runner --assume-installed bash,patchelf,resolv-conf | |
| echo | |
| echo | |
| grun --help | |
| echo | |
| echo | |
| curl -fsSL https://deno.land/install.sh | time sh | |
| echo | |
| echo | |
| curl -fsSL https://bun.sh/install | time bash | |
| echo | |
| echo | |
| export DENO_INSTALL="${HOME}/.deno" | |
| export BUN_INSTALL="$HOME/.bun" | |
| export PATH="${PATH}:${DENO_INSTALL}/bin:${BUN_INSTALL}/bin" | |
| echo | |
| echo | |
| patchelf --print-interpreter --print-needed "$(which deno)" | |
| echo | |
| echo | |
| patchelf --print-interpreter --print-needed "$(which bun)" | |
| echo | |
| echo | |
| patchelf --set-rpath "${PREFIX}/glibc/lib" --set-interpreter "${PREFIX}/glibc/lib/ld-linux-aarch64.so.1" "$(which deno)" | |
| patchelf --set-rpath "${PREFIX}/glibc/lib" --set-interpreter "${PREFIX}/glibc/lib/ld-linux-aarch64.so.1" "$(which bun)" | |
| echo | |
| echo | |
| ldd "$(which deno)" | |
| echo | |
| echo | |
| ldd "$(which bun)" | |
| echo | |
| echo | |
| for i in deno bun ; do | |
| cat - << EOF > ~/".${i}/bin/${i}.glibc.sh" | |
| #!/usr/bin/env sh | |
| _oldpwd="\${PWD}" | |
| _dir="\$(dirname "\${0}")" | |
| cd "\${_dir}" | |
| if ! [ -h "${i}" ] ; then | |
| >&2 mv -fv "${i}" "${i}.orig" | |
| >&2 ln -sfv "${i}.glibc.sh" "${i}" | |
| fi | |
| cd "\${_oldpwd}" | |
| LD_PRELOAD= exec "\${_dir}/${i}.orig" "\${@}" | |
| # Or | |
| #exec grun "\${_dir}/${i}.orig" "\${@}" | |
| EOF | |
| chmod -c u+x ~/".${i}/bin/${i}.glibc.sh" | |
| done | |
| echo | |
| echo | |
| deno.glibc.sh --version | |
| echo | |
| echo | |
| bun.glibc.sh --version | |
| echo | |
| echo | |
| tree -a ~/.deno ~/.bun | |
| echo | |
| echo | |
| cat -n ~/.deno/bin/deno.glibc.sh | |
| echo | |
| echo | |
| cat -n ~/.bun/bin/bun.glibc.sh | |
| echo | |
| echo | |
| deno <<< "console.log('Hello world')" | |
| echo | |
| echo | |
| file="$(mktemp -p ~/.cache --suffix .js hello-XXX)" | |
| echo "console.log('Hello world')" > "${file}" | |
| bun run "${file}" | |
| echo | |
| echo | |
Thank you so much for this!!!
From relatively barebones Termux, needed to pkg install which time ldd tree before your script worked.
Also might help others that after this script was successful, I had to restart session to get bun in my path. And in order for bun install to work on my prior bun project, I had to use --backend-copyfile as per this comment
$ bun Segmentation fault ~ $ bun --help Segmentation fault ~ $ deno
Not working
Try this guide if it doesn't work
https://gist.github.com/Jobians/cc3cff8b0b13bee03e95f64e86d0f2a6
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NOTES:
When installing package with
pacmanon Termux and it fail due to file conflict because of that file is part of a package that was installed withapt, remember to use thepacman's--assume-installedargument to exclude the conflicting package.I added
resolv-confto the the original--assume-installedbecause of package conflict.Unsetting
LD_PRELOADenvironment variable globally is not recommended because it will disable the use of the standard Gnu/Linux shebang. In that case, consider usingtermux-fix-shebangcommand before running scripts.First patch your
glibcbinaries :Then run it without
LD_PRELOADOr run it with
glibc-runner:grun $(which deno) --versionNow, this script generate a wrapper for Deno.js & Bun.js binary , backup the original binary files with
.origfile extension, create symbolic link to the wrapper as the original file names. This way , we can run Deno.js or Bun.js normally with just command name, remember to at least run the wrappers (*.glibc.sh) once after installing or upgrading Deno.js & Bun.js . This approach can be done for othersglibcbinaries.Reference: oven-sh/bun#8685 (comment)