Skip to content

Commit 67395c8

Browse files
committed
update bindings
1 parent 621438f commit 67395c8

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/index.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
5959
if (abi === '127') {
6060
return require('./sentry_cpu_profiler-darwin-x64-127.node');
6161
}
62+
if (abi === '137') {
63+
return require('./sentry_cpu_profiler-darwin-x64-137.node');
64+
}
6265
}
6366

6467
if (arch === 'arm64') {
@@ -71,6 +74,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
7174
if (abi === '127') {
7275
return require('./sentry_cpu_profiler-darwin-arm64-127.node');
7376
}
77+
if (abi === '137') {
78+
return require('./sentry_cpu_profiler-darwin-arm64-137.node');
79+
}
7480
}
7581
}
7682

@@ -85,6 +91,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
8591
if (abi === '127') {
8692
return require('./sentry_cpu_profiler-win32-x64-127.node');
8793
}
94+
if (abi === '137') {
95+
return require('./sentry_cpu_profiler-win32-x64-137.node');
96+
}
8897
}
8998
}
9099

@@ -100,6 +109,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
100109
if (abi === '127') {
101110
return require('./sentry_cpu_profiler-linux-x64-musl-127.node');
102111
}
112+
if (abi === '137') {
113+
return require('./sentry_cpu_profiler-linux-x64-musl-137.node');
114+
}
103115
}
104116
if (stdlib === 'glibc') {
105117
if (abi === '108') {
@@ -111,6 +123,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
111123
if (abi === '127') {
112124
return require('./sentry_cpu_profiler-linux-x64-glibc-127.node');
113125
}
126+
if (abi === '137') {
127+
return require('./sentry_cpu_profiler-linux-x64-glibc-137.node');
128+
}
114129
}
115130
}
116131
if (arch === 'arm64') {
@@ -124,6 +139,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
124139
if (abi === '127') {
125140
return require('./sentry_cpu_profiler-linux-arm64-musl-127.node');
126141
}
142+
if (abi === '137') {
143+
return require('./sentry_cpu_profiler-linux-arm64-musl-137.node');
144+
}
127145
}
128146

129147
if (stdlib === 'glibc') {
@@ -136,6 +154,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
136154
if (abi === '127') {
137155
return require('./sentry_cpu_profiler-linux-arm64-glibc-127.node');
138156
}
157+
if (abi === '137') {
158+
return require('./sentry_cpu_profiler-linux-arm64-glibc-137.node');
159+
}
139160
}
140161
}
141162
}

0 commit comments

Comments
 (0)