[v8-users] Linking to monolithic V8 build using in-tree libc++ causes linker errors on Windows

2023-11-02 Thread Kasper Isager Dalsgarð
Hi! I'm seeing linker warnings and errors related to libc++ symbols when linking to a monolithic V8 build made using the in-tree libc++, i.e. `using_custom_libcxx = true`, on Windows. On both macOS and Linux I'm not seeing any issues and my executables are linked correctly. Specifically, I'm s

[v8-users] Re: Linking to monolithic V8 build using in-tree libc++ causes linker errors on Windows

2023-11-02 Thread Kasper Isager Dalsgarð
Turns out I was missing a dependency from my executable to libc++ and so `_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS` wasn't propagated to the compile definitions. On Thursday, 2 November 2023 at 16:02:01 UTC+1 Kasper Isager Dalsgarð wrote: > Hi! > > I'm seeing linker warnings and errors related to