@@ -59,6 +59,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
59
59
if ( abi === '127' ) {
60
60
return require ( './sentry_cpu_profiler-darwin-x64-127.node' ) ;
61
61
}
62
+ if ( abi === '137' ) {
63
+ return require ( './sentry_cpu_profiler-darwin-x64-137.node' ) ;
64
+ }
62
65
}
63
66
64
67
if ( arch === 'arm64' ) {
@@ -71,6 +74,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
71
74
if ( abi === '127' ) {
72
75
return require ( './sentry_cpu_profiler-darwin-arm64-127.node' ) ;
73
76
}
77
+ if ( abi === '137' ) {
78
+ return require ( './sentry_cpu_profiler-darwin-arm64-137.node' ) ;
79
+ }
74
80
}
75
81
}
76
82
@@ -85,6 +91,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
85
91
if ( abi === '127' ) {
86
92
return require ( './sentry_cpu_profiler-win32-x64-127.node' ) ;
87
93
}
94
+ if ( abi === '137' ) {
95
+ return require ( './sentry_cpu_profiler-win32-x64-137.node' ) ;
96
+ }
88
97
}
89
98
}
90
99
@@ -100,6 +109,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
100
109
if ( abi === '127' ) {
101
110
return require ( './sentry_cpu_profiler-linux-x64-musl-127.node' ) ;
102
111
}
112
+ if ( abi === '137' ) {
113
+ return require ( './sentry_cpu_profiler-linux-x64-musl-137.node' ) ;
114
+ }
103
115
}
104
116
if ( stdlib === 'glibc' ) {
105
117
if ( abi === '108' ) {
@@ -111,6 +123,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
111
123
if ( abi === '127' ) {
112
124
return require ( './sentry_cpu_profiler-linux-x64-glibc-127.node' ) ;
113
125
}
126
+ if ( abi === '137' ) {
127
+ return require ( './sentry_cpu_profiler-linux-x64-glibc-137.node' ) ;
128
+ }
114
129
}
115
130
}
116
131
if ( arch === 'arm64' ) {
@@ -124,6 +139,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
124
139
if ( abi === '127' ) {
125
140
return require ( './sentry_cpu_profiler-linux-arm64-musl-127.node' ) ;
126
141
}
142
+ if ( abi === '137' ) {
143
+ return require ( './sentry_cpu_profiler-linux-arm64-musl-137.node' ) ;
144
+ }
127
145
}
128
146
129
147
if ( stdlib === 'glibc' ) {
@@ -136,6 +154,9 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
136
154
if ( abi === '127' ) {
137
155
return require ( './sentry_cpu_profiler-linux-arm64-glibc-127.node' ) ;
138
156
}
157
+ if ( abi === '137' ) {
158
+ return require ( './sentry_cpu_profiler-linux-arm64-glibc-137.node' ) ;
159
+ }
139
160
}
140
161
}
141
162
}
0 commit comments