Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: README.md

Issue 29807589: Issue 6695 - Allow automatically downloading V8 (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: prebuilt, not prebuild Created June 18, 2018, 1:39 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: README.md
===================================================================
--- a/README.md
+++ b/README.md
@@ -43,31 +43,46 @@
* g++ multilib
If you have a compilation issue with another compiler please [create an issue](https://issues.adblockplus.org/).
You also need Python 2.7 and ensure that `python.exe` is in your `PATH`.
### Unix
+You need V8 prior to building. Two options:
+
+* Use the default prebuild V8 by invoking the make target
+`get-prebuilt-v8`. This will download and extract the prebuilt V8 for
+your setup. The default environment will be set by the Makefile at
+build time. If you are cross compiling use the same options as below
+to invoke make.
+
+If you switch target platform using the same source tree, you should
+manually remove the `third_party/prebuilt-v8` directory and redownload
+again with the right options.
+
+Or
+
* Prepare V8 and set environment variables LIBV8_LIB_DIR and LIBV8_INCLUDE_DIR.
LIBV8_INCLUDE_DIR should point to the include directory of V8, e.g.
`.../v8/include` and there should be `libv8_monolith.a` in the directory
LIBV8_LIB_DIR.
+To build:
+
Using Make:
make
The default target architecture is the architecture of a host. In order to build for a different architecture pass `TARGET_ARCH` to `make`, e.g. run:
make TARGET_ARCH=ia32
supported values are `ia32` and `x64`.
-
To build and run the tests:
make test
Likewise, use the following with `TARGET_ARCH`:
make test TARGET_ARCH=ia32
« no previous file with comments | « Makefile ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld