Ben Noordhuis
9f682265d6
deps: upgrade v8 to 3.18.0
12 years ago
Fedor Indutny
061151c5f5
uv: Upgrade to v0.11.1
12 years ago
isaacs
1ccae9cb1b
npm: Upgrade to 1.2.18
12 years ago
isaacs
e5fdc4d6f1
uv: Upgrade to v0.10.4
12 years ago
Ben Noordhuis
7357bcb727
v8: reapply floating patches
12 years ago
Ben Noordhuis
587e83c6d6
v8: upgrade to 3.17.16
12 years ago
Fedor Indutny
55d058e624
v8: cherry-pick 75311294 from upstream
Quote from commit message:
Create a new HandleScope for each JSON-parsed object to avoid
excessive growth.
12 years ago
isaacs
d46ebffb66
npm: Upgrade to 1.2.17
12 years ago
Ben Noordhuis
87f9ece334
deps: upgrade libuv to c43e851
12 years ago
Bert Belder
1b5ec033ee
deps: upgrade libuv to v0.10.3
12 years ago
isaacs
dea0634f60
npm: Upgrade to v1.2.15
12 years ago
Ben Noordhuis
982877ec85
deps: upgrade libuv to 7514149
12 years ago
Fedor Indutny
28c6e42ee7
openssl: disable HEARTBEAT TLS extension
Microsoft's IIS doesn't support it, and is not replying with ServerHello
after receiving ClientHello which contains it.
The good way might be allowing to opt-out this at runtime from
javascript-land, but unfortunately OpenSSL doesn't support it right now.
see #5119
12 years ago
Ben Noordhuis
8548920969
openssl: make sed tool configurable
Those poor sods on systems where /usr/bin/sed is a BSD sed can now do
`make -C deps/openssl/asm SED=gsed`.
12 years ago
Ben Noordhuis
690a8cce41
deps: fix openssl build on windows
Commit 8632af3
("tools: update gyp to r1601") broke the Windows build.
Older versions of GYP link to kernel32.lib, user32.lib, etc. but that
was changed in r1584. See https://codereview.chromium.org/12256017
Fix the build by explicitly linking to the required libraries.
12 years ago
Ben Noordhuis
648a0726d0
deps: upgrade libuv to eca008a
12 years ago
verwaest@chromium.org
14417fdb3f
v8: Unify kMaxArguments with number of bits used to encode it.
Increase the number of bits by 1 by making Flags unsigned.
BUG=chromium:211741
Review URL: https://chromiumcodereview.appspot.com/12886008
This is a back-port of commits 13964 and 13988 addressing CVE-2013-2632.
12 years ago
Ben Noordhuis
e47a3e3ff4
deps: upgrade libuv to 9b61939
12 years ago
isaacs
3dd7938c03
npm: upgrade to 1.2.15
12 years ago
Fedor Indutny
40b1c9a66d
v8: unbreak build on smartos after 831af97df2
12 years ago
Trevor Norris
831af97df2
v8: revert dtrace fix from 3.14 downgrade
Revert "v8: fix postmortem and dtrace helper build"
This reverts commit aa98539277
.
12 years ago
Bryan Cantrill
8bffa333d2
v8: loosen artificial mmap constraint
Fixes #4010 .
12 years ago
Trevor Norris
06bec0e087
v8: remove optimization switches
Remove compiler switches from $(TOPLEVEL)/deps/v8/build/common.gypi,
they are set globally in $(TOPLEVEL)/common.gypi.
12 years ago
Trevor Norris
83261e789e
deps: update v8 to 3.17.13
12 years ago
Ben Noordhuis
f5a337e09c
deps: upgrade libuv to b45a74f
12 years ago
Timothy J Fontaine
4432dc8187
v8: move 32 bit heap hint on sunos
Setting the V8 heap at or near 0x20000000 on 32bit sunos only allows
512 MB of heap space, instead on sunos move this to 0x80000000.
Fixes #4010 .
12 years ago
Ben Noordhuis
e99dff4617
deps: upgrade libuv to 7b66ea1
12 years ago
isaacs
21a99664ae
uv: Upgrade to 5462dab
12 years ago
isaacs
31b5d41f57
npm: Upgrade to 1.2.14 (fixed)
12 years ago
Bert Belder
3446157269
win/openssl: mark assembled object files as seh safe
There are no unsafe structured exception handlers in object files
generated from hand-crafted assembly - because they contain no exception
handlers at all.
12 years ago
isaacs
4b47bb4dbc
uv: Upgrade to b68ee40
12 years ago
isaacs
f23ec6b3cf
uv: Upgrade to f89125e
12 years ago
isaacs
80fb580936
npm: Update to 1.2.14
12 years ago
isaacs
51c8b0ede3
V8: Reapply floating patches
12 years ago
isaacs
81c278d58d
V8: Upgrade to 3.14.5.8
12 years ago
Bert Belder
01fa5ee21d
win/openssl: mark assembled object files as seh safe
There are no unsafe structured exception handlers in object files
generated from hand-crafted assembly - because they contain no exception
handlers at all.
12 years ago
Ben Noordhuis
f7b06e0bbc
deps: upgrade libuv to 0b26af3
12 years ago
Ben Noordhuis
7707acd6ef
deps: upgrade libuv to 7e59f9b
12 years ago
Ben Noordhuis
bb431531a3
deps: upgrade libuv to 2a8d2a5
12 years ago
Scott Blomquist
f054fec535
openssl: regenerate asm files for openssl 1.0.1e
12 years ago
Ben Noordhuis
7bc449c063
deps: upgrade libuv to a0c1d84
12 years ago
yangguo@chromium.org
cfacde3ac6
v8: Hardfloat does not imply VFPv3, only VFPv2.
Raspberry Pi is an example.
BUG=v8:2393
Review URL: https://chromiumcodereview.appspot.com/11570061
Patch from Chi-Thanh Christopher Nguyen <nguyenchithanh@gmail.com>.
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@13232 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This is a backport of v8/v8@44419ad089b729a1aab4a5f27c0833e2ce69d28b.
12 years ago
Ben Noordhuis
c80bde1781
v8: work around String::WriteAscii segfault
See http://code.google.com/p/v8/issues/detail?id=2493 for details.
This commit reapplies 9668df8
. The issue has been fixed upstream but
reappeared after last night's downgrade to V8 3.14.5 in commit b15a10e
.
Conflicts:
test/simple/test-buffer.js
12 years ago
Andrei Sedoi
17c6fe2e22
mips: fix openssl build
12 years ago
Fedor Indutny
aa98539277
v8: fix postmortem and dtrace helper build
Regardless of previous @bnoordhuis' changes
12 years ago
Ben Noordhuis
03fe7fb55c
v8: reapply floating patches
Reapply floating patches. Special mention: also reapplies 017009f
but
with the extra change of removing DescriptorArray::kTransitionsIndex
from the postmortem metadata generator because said field no longer
exists in V8 3.14.
12 years ago
Ben Noordhuis
b15a10e7a0
deps: downgrade v8 to 3.14.5
V8 3.15 and newer have stability and performance issues. Roll back to
a known-good version.
12 years ago
isaacs
ff540e19a4
uv: Upgrade to 86ae8b3c
12 years ago
Ben Noordhuis
de9ee2a483
deps: upgrade libuv to e89aced
12 years ago
Ben Noordhuis
6ad792610b
deps: upgrade libuv to 26fa6f8
12 years ago