Fix missing of symbols issue on Release build
This commit is contained in:
parent
41f356a94d
commit
82d796ded4
5 changed files with 23 additions and 3 deletions
|
@ -6,6 +6,9 @@
|
|||
|
||||
#include <io.h>
|
||||
|
||||
#include "v8-profiler.h"
|
||||
#include "v8-inspector.h"
|
||||
|
||||
namespace node {
|
||||
|
||||
int open_osfhandle(intptr_t osfhandle, int flags) {
|
||||
|
@ -16,4 +19,12 @@ int close(int fd) {
|
|||
return _close(fd);
|
||||
}
|
||||
|
||||
void ReferenceSymbols() {
|
||||
// Following symbols are used by electron.exe but got stripped by compiler,
|
||||
// for some reason, adding them to ForceSymbolReferences does not work,
|
||||
// probably because of VC++ bugs.
|
||||
v8::TracingCpuProfiler::Create(nullptr);
|
||||
reinterpret_cast<v8_inspector::V8InspectorClient*>(nullptr)->unmuteMetrics(0);
|
||||
}
|
||||
|
||||
} // namespace node
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue