summaryrefslogtreecommitdiff
path: root/tools/make-binaries (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-11-16make-binaries: reduce log outputStu Tomlinson1-19/+20
Reduce log output from make-binaries: - quieter curl downloads - quiet build of crosstool-ng - disable crosstool-ng progress bar
2022-11-16make-binaries: Bump zlib version to 1.2.13Stu Tomlinson1-2/+4
Update zlib to 1.2.13 to address CVE-2022-37434 Also change zlib download to use archive URL so builds do not fail when specified version is no longer the current version
2022-09-23make-binaries: Bump Expat and libpng versionsHolger Weiss1-2/+2
2022-09-23make-binaries: Fix GitHub release version checksHolger Weiss1-3/+3
Adapt to changes to GitHub release pages.
2022-09-13make-binaries: Bump Erlang/OTP version to 24.3.4.5Holger Weiss1-1/+1
2022-09-13make-binaries: Bump dependency versionsStu Tomlinson1-5/+5
2022-05-28make-binaries: Include CAPTCHA script with releaseHolger Weiss1-0/+10
2022-05-28make-binaries: Edit rebar.config more carefullyHolger Weiss1-1/+1
Don't break the (currently nonexistent) case where a dependency's rebar.config file specifies LDFLAGS before and after "-lstdc++", such as "-lfoo -lstdc++ -lbar".
2022-05-25make-binaries: Fix linking of EIMP dependenciesHolger Weiss1-2/+2
Avoid linker errors such as the following when using GCC 10 or newer: | multiple definition of `gdImageCreateFromJpegPtr' See: https://gcc.gnu.org/gcc-10/porting_to.html Fixes #3514.
2022-05-18make-binaries: Adjust Mnesia spool directory pathHolger Weiss1-0/+1
Adjust the default Mnesia directory for compatibility with older binary packages. Closes #3818.
2022-05-12make-binaries: Bump dependency versionsHolger Weiss1-2/+2
2022-05-06make-binaries: Bump SQLite and ODBC versionsHolger Weiss1-2/+2
2022-05-04Apparently the --tags option is required to properly describe a brand new tagBadlop1-1/+1
2022-05-04make-binaries: Update to Crosstool-NG 1.25.0-RC2Holger Weiss1-661/+5
Update Crosstool-NG to the current release candidate, and use much shorter "defconfig" files for specifying the configuration.
2022-05-04make-binaries: Try to avoid rebuilding depsHolger Weiss1-69/+156
Don't rebuild external dependencies if all of them are up to date.
2022-05-04Import script for building Linux binariesHolger Weiss1-0/+1444
The tools/make-binaries script creates self-contained OTP releases for Linux/x64 and Linux/arm64 systems. All optional ejabberd features are supported. Erlang/OTP, Elixir, and all dependencies are downloaded and built from source (using crosstool-NG). The generated binaries depend on glibc 2.17 or later, all other external libraries are linked statically. The script should work on any non-ancient Linux/x64 system and requires just a few common development tools (to bootstrap crosstool-NG). The release is installed by creating an "ejabberd" user, extracting the archive into /opt, and moving the systemd unit (or init script) into place.