aboutsummaryrefslogtreecommitdiffstats
path: root/kerl
AgeCommit message (Collapse)Author
2017-11-03Sketch docsh install procedureRadek Szymczyszyn
2017-10-23Roll 1.7.01.7.0Mark Allen
2017-10-23Merge pull request #222 from kerl/pkg-checkMark Allen
Attempt to detect when prerequisite packages are not on a Linux
2017-10-23Merge pull request #214 from kerl/shell_history_otp_20Mark Allen
Add automatic shell history environment flag for OTP >= 20
2017-10-23Merge pull request #225 from rciorba/fish_activateMark Allen
suggest the correct activate script based on parent process command
2017-10-02Roll 1.6.01.6.0Mark Allen
2017-10-02Merge remote-tracking branch 'origin/wx_fixes' into high_sierra_flagMark Allen
2017-10-02Don't stomp on defined CC valuesMark Allen
2017-10-02Rework how the wx patch is appliedMark Allen
Make sure it's focused on macOS and doesn't rely on a newer perl installation to trigger.
2017-10-02Maybe munge LD and DED flags when macOS >= 10.13Mark Allen
As explained in #230, DED_LDFLAGS must be set correctly for clang 9 to compile various OTP applications correctly including crypto. This patch reworks #230 a little bit so that it's a tiny bit more generalized, in case we run across another situation where this needs to be done for a particular operating system.
2017-09-28Fix point arithmetic in wx_impl.cpp for Erlang < 20.0Sergey Elin
2017-09-28Hardcoded CC and DED_LD to `clang` for High Sierra onlyJoe DeVivo
2017-09-27DED_LDFLAGS tomfoolery for macOS 10.13Joe DeVivo
2017-08-12avoid PPID since it's used and readonly on mac + use ps -o ucommRadu Ciorba
PPID variable already used and readonly on Mac. ps's output flag comm is not consistent between Mac and Linux+FreeBDS, but ucomm seems to work everywhere
2017-08-12suggest the correct activate script based on parent process commandRadu Ciorba
Looks at parent process command and suggests sourcing the appropriate activate script for fish and csh. fixes #224
2017-08-03Add a usage line for 'kerl path' subcommandsanmiguel
2017-08-03Remove unneeded capture variableMark Allen
2017-08-03Initial attempt at this. Probably broken.Mark Allen
2017-08-03Always add shell_history to ERL_AFLAGSkerl-shell_history_otp_20sanmiguel
Even for erlangs before 20.0 - it should have no effect
2017-07-31Fix "kerl plt" to show actual pathShunichi Shinohara
2017-07-25Fix up activation/deactivationMark Allen
2017-06-22Space between the option and the valueshell_history_otp_20Mark Allen
2017-06-22Add automatic shell history flag for OTP >= 20Mark Allen
2017-05-25Roll 1.5.11.5.1Mark Allen
2017-05-25Remove spurious spaces around KERL_CONFIGURE_OPTIONS lineRichard Bowker
- extra spaces were causing the line to error: /usr/local/bin/kerl: line 552: KERL_CONFIGURE_OPTIONS: command not found
2017-05-24Merge pull request #208 from kerl/bump-1.5.0Mark Allen
Bump version to 1.5.0
2017-05-24Merge pull request #205 from kerl/force_64_bits_macosMark Allen
Always turn on 64 bit builds for macOS
2017-05-24Merge pull request #206 from kerl/gh-193-mtc-fix-doc-linksMark Allen
Conditionally switch where docs symlink to
2017-05-23Bump version to 1.5.0bump-1.5.0sanmiguel
Merge this last for Milestone 1.5.0, then tag and release
2017-05-23Conditionally switch where docs symlink togh-193-mtc-fix-doc-linkssanmiguel
In some cases the docs are built without the 'erlang' subdir. Fixes #193
2017-05-23Always turn on 64 bit builds for macOSforce_64_bits_macosMark Allen
2017-05-23Get perl version in a more portable wayget_perl_verMark Allen
2017-05-23Merge pull request #201 from kerl/force-moveMark Allen
Add a force flag for some mv
2017-05-23Merge pull request #198 from kerl/gh197Mark Allen
Apply makeop patch for perls >= 5.22
2017-05-05Add a -f flag for balky mvforce-moveMark Allen
Some Linuxes get cranky when you try to move files on top of an existing directory. So we add the -f flag to say it's ok to overwrite that old stuff.
2017-04-13fix bad usage of 'read' commandVlad Dumitrescu
2017-03-30Apply makeop patch for perls >= 5.22gh197Mark Allen
2017-02-22Roll 1.4.21.4.2Mark Allen
2017-02-21Use string not-equal instead of integer not-equalbugfix2Mark Allen
2017-02-20Revert the printf/echo changesanmiguel
2017-02-18Flesh out 'kerl path'sanmiguel
2017-02-17First pass at some of 'kerl path'sanmiguel
WIP, lots TODO
2017-02-16Add 'kerl path' subcommandsanmiguel
Re #185 - [x] add `path` subcommad
2017-02-12Merge pull request #181 from kerl/fix-build_pltMark Allen
Attempt a more accurate way to get apps for dialyzer PLT building
2017-02-11Attempt a more accurate way to get apps for dialyzer PLT buildingfix-build_pltsanmiguel
2017-02-05Fix syntax for fetching old summtc-fix-read-kerl-config-storage-filenamesanmiguel
2017-02-05Merge pull request #176 from kerl/gh170Mark Allen
Assert perl exists before builds (#170)
2017-02-05Fix handling of KERL_INSTALL_HTMLDOCS and KERL_PROMPTsanmiguel
We had no handling for KERL_INSTALL_HTMLDOCS being set in the shell properly, as KERL_INSTALL_MANPAGES is handled There was a typo in the use of KERL_PROMPT in CSH activate scripts
2017-02-05Add basic build option printoutMark Allen
2017-02-02Store build configuration in a fileconfigMark Allen
This change implements storing the build configuration in a file which can later be compared to a potentially new configuration which might trigger the need to re-run the OTP configuration steps. We also copy the build configuration into the installation directory so that at some future time we can write or enhance a command which shows the build configuration. Addresses #162 #158