From b7bea28c9bbccdc3df560160f05b8fa88a349c1c Mon Sep 17 00:00:00 2001 From: Emanuel <3manuek@esdebian.org> Date: Sat, 25 Oct 2014 08:27:16 -0300 Subject: [PATCH 1/3] Fix INSTALL doc Added curl on the apt-get install instructions. --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index a92a899..2549fb5 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -15,7 +15,7 @@ started. You will note in particular: sudo apt-get install -y sbcl \ - git patch unzip \ + git curl patch unzip \ devscripts pandoc \ libsqlite3-dev From 29ebdff9f9367780264c355e37b5e0fc76fde51d Mon Sep 17 00:00:00 2001 From: Emanuel <3manuek@esdebian.org> Date: Sat, 25 Oct 2014 11:55:14 -0300 Subject: [PATCH 2/3] Update INSTALL.md Extending documentation --- INSTALL.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index 2549fb5..fc4b687 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -36,6 +36,18 @@ You will need to install either SBCL or CCL separately, and when using brew install sbcl brew install clozure-cl +### Compiling SBCL yourself + +If you ended up building SBCL yourself or you may want to do that, you can +download the source from http://www.sbcl.org/getting.html . + +You will need to build SBCL with the following options: + + sh make.sh --with-sb-core-compression --with-sb-thread + +Note that you could also remove the --compress-core option. + + ## Building pgloader Now that the dependences are installed, just type make. From 9acc716f690f3e620494e87e3e1c943fc6de7764 Mon Sep 17 00:00:00 2001 From: Emanuel <3manuek@esdebian.org> Date: Sat, 25 Oct 2014 12:40:50 -0300 Subject: [PATCH 3/3] Update INSTALL.md --- INSTALL.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index fc4b687..0acba09 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -36,16 +36,16 @@ You will need to install either SBCL or CCL separately, and when using brew install sbcl brew install clozure-cl -### Compiling SBCL yourself +### Compiling SBCL by yourself -If you ended up building SBCL yourself or you may want to do that, you can -download the source from http://www.sbcl.org/getting.html . +If you ended up building SBCL yourself or you just want to do that, you can +download the source from http://www.sbcl.org/ . -You will need to build SBCL with the following options: +You will need to build SBCL with the following command and options: sh make.sh --with-sb-core-compression --with-sb-thread -Note that you could also remove the --compress-core option. +NOTE: You could also remove the --compress-core option. ## Building pgloader