On Tue, Feb 28, 2023 at 3:15 AM Ben Ernst <[email protected]> wrote: > > use_custom_libcxx=false > > [snip] > > [exec] cl : Command line warning D9025 : overriding '/std:c++20' with > '/std:c++17' > [exec] C:\88082ece\v8\include/cppgc/allocation.h(8): fatal error C1083: > Cannot open include file: 'atomic': No such file or directory
The warning is probably harmless. The fatal error is most likely caused by use_custom_libcxx=false. That tells V8 to use your system's libc++ instead of the bundled one but yours is either missing, not found, or missing some files. A caveat to keep in mind: you can't mix different libc++s. If you switch to V8's copy, you have to use it in your application as well. (How is left as an exercise; there are several ways to go about it.) -- -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/v8-dev/CAHQurc9EWYT6gsJJc3_RXin7nxmFww%2BQUwPDMs6UKFUM%3DV_M2g%40mail.gmail.com.
