Re: [v8-users] Evaluate ES6-Module with undefined function

2020-07-30 Thread Hans Maier
06 UTC+2 schrieb Ben Noordhuis: > > On Wed, Jul 29, 2020 at 10:24 AM Hans Maier > wrote: > > > > Hi, > > > > im upgrading from 8.0.426.26 to 8.4.371.22. > > > > I've a small test case where I evalute (using v8::Module::Evaluate) a > ES6-Module wi

[v8-users] Evaluate ES6-Module with undefined function

2020-07-29 Thread Hans Maier
Hi, im upgrading from 8.0.426.26 to 8.4.371.22. I've a small test case where I evalute (using v8::Module::Evaluate) a ES6-Module with the following content: hello(); In 8.0.x I get an exception: HelloWorld1.js:1: hello(); ^ ReferenceError: hello is not defined at

[v8-users] Re: Compiling V8 8.4 on Windows using using_custom_libcxx=false

2020-07-28 Thread Hans Maier
need > to add "-Wno-range-loop-construct" and maybe "-Wno-invalid-offsetof" to > your compilation flags if you're using clang. > The patches are for the 8.3 branch head, but the changes needed are about > the same. > > On Monday, July 27, 2020 at 3:45:28 A

[v8-users] Compiling V8 8.4 on Windows using using_custom_libcxx=false

2020-07-27 Thread Hans Maier
Hi, I'm trying to compile the branch head of 8.4 under windows using msvc. Unfortunatly I get compile errors: ../../src/compiler/backend/register-allocator-verifier.cc(355,19): error: loop variable 'pair' creates a copy from type 'const std::pair' [-Werror,-Wrange-loop-construct] for (const

Re: [v8-users] Is "is_component_build" expected to work at all in v8 7.8?

2019-11-03 Thread Hans Maier
Hi, the libc provided together with v8 is incompatible with the msvc-libc. I had to provide "use_custom_libcxx=false" to be able to link it with my own program. Am Sonntag, 3. November 2019 12:43:57 UTC+1 schrieb Ben Ernst: > > Of note, the sample utilities "d8" and "v8_hello_world" build

Re: [v8-users] Re: Building with MSVC & GN - Where do the static files go?

2017-06-26 Thread Hans Maier
e DLL's are fine > for now, I'm honestly just happy that I can get it building using GN with > the latest versions. > > On Wednesday, January 11, 2017 at 4:53:09 AM UTC-5, Hans Maier wrote: >> >> Ok, thanks for the Info. I will be using it as soon 5.7 becomes stable. >>

Re: [v8-users] Re: Building with MSVC & GN - Where do the static files go?

2017-01-11 Thread Hans Maier
On Tue, Jan 10, 2017 at 4:26 PM Hans Maier <tbae...@gmail.com > > wrote: > >> Hi, >> >> I had the same issue. I ended up creating the static libs from the >> obj-files using the MSVC lib tool manually. >> >> Unsatisfactory, but it was working for me.

[v8-users] Re: Building with MSVC & GN - Where do the static files go?

2017-01-10 Thread Hans Maier
Hi, I had the same issue. I ended up creating the static libs from the obj-files using the MSVC lib tool manually. Unsatisfactory, but it was working for me. Am Montag, 9. Januar 2017 15:55:40 UTC+1 schrieb Brendan Bates: > > Hello, > > I have seen this issue pop up a couple times on here and