[V8] Fix MinGW-w64 compilation
[profile/ivi/qtjsbackend.git] / README
1 This repository contains a copy of V8 with additional changes needed for Qt.
2
3 Please use [V8] as prefix to the subject of your commit messages when your change
4 affects V8 itself and not the build system around it.
5
6 Updating v8:
7
8 Run
9
10     ./bin/update-v8.sh [url] [refspec]
11
12 to update src/3rdparty/v8 to a specific v8 version. The script will remove
13 all Qt specific modifications and save them in /tmp/v8_patch, where they
14 can be applied from using git am.
15
16 For example:
17
18     ./bin/update-v8.sh https://github.com/v8/v8.git refs/tags/3.7.3
19     git commit -e -F commitlog.txt
20     git am -3 /tmp/v8_patch
21
22 In the likely case of conflicts, follow the git instructions about continuing
23 the patch application process after resolving the conflicts.