@@ -41,9 +41,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
41
41
// This is for cases where precompiled binaries were not provided, but may have been compiled from source.
42
42
if ( platform === 'darwin' ) {
43
43
if ( arch === 'x64' ) {
44
- if ( abi === '93' ) {
45
- return require ( './sentry_cpu_profiler-darwin-x64-93.node' ) ;
46
- }
47
44
if ( abi === '108' ) {
48
45
return require ( './sentry_cpu_profiler-darwin-x64-108.node' ) ;
49
46
}
@@ -56,9 +53,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
56
53
}
57
54
58
55
if ( arch === 'arm64' ) {
59
- if ( abi === '93' ) {
60
- return require ( './sentry_cpu_profiler-darwin-arm64-93.node' ) ;
61
- }
62
56
if ( abi === '108' ) {
63
57
return require ( './sentry_cpu_profiler-darwin-arm64-108.node' ) ;
64
58
}
@@ -73,9 +67,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
73
67
74
68
if ( platform === 'win32' ) {
75
69
if ( arch === 'x64' ) {
76
- if ( abi === '93' ) {
77
- return require ( './sentry_cpu_profiler-win32-x64-93.node' ) ;
78
- }
79
70
if ( abi === '108' ) {
80
71
return require ( './sentry_cpu_profiler-win32-x64-108.node' ) ;
81
72
}
@@ -91,9 +82,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
91
82
if ( platform === 'linux' ) {
92
83
if ( arch === 'x64' ) {
93
84
if ( stdlib === 'musl' ) {
94
- if ( abi === '93' ) {
95
- return require ( './sentry_cpu_profiler-linux-x64-musl-93.node' ) ;
96
- }
97
85
if ( abi === '108' ) {
98
86
return require ( './sentry_cpu_profiler-linux-x64-musl-108.node' ) ;
99
87
}
@@ -105,9 +93,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
105
93
}
106
94
}
107
95
if ( stdlib === 'glibc' ) {
108
- if ( abi === '93' ) {
109
- return require ( './sentry_cpu_profiler-linux-x64-glibc-93.node' ) ;
110
- }
111
96
if ( abi === '108' ) {
112
97
return require ( './sentry_cpu_profiler-linux-x64-glibc-108.node' ) ;
113
98
}
@@ -121,9 +106,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
121
106
}
122
107
if ( arch === 'arm64' ) {
123
108
if ( stdlib === 'musl' ) {
124
- if ( abi === '93' ) {
125
- return require ( './sentry_cpu_profiler-linux-arm64-musl-93.node' ) ;
126
- }
127
109
if ( abi === '108' ) {
128
110
return require ( './sentry_cpu_profiler-linux-arm64-musl-108.node' ) ;
129
111
}
@@ -136,9 +118,6 @@ export function importCppBindingsModule(): PrivateV8CpuProfilerBindings {
136
118
}
137
119
138
120
if ( stdlib === 'glibc' ) {
139
- if ( abi === '93' ) {
140
- return require ( './sentry_cpu_profiler-linux-arm64-glibc-93.node' ) ;
141
- }
142
121
if ( abi === '108' ) {
143
122
return require ( './sentry_cpu_profiler-linux-arm64-glibc-108.node' ) ;
144
123
}
@@ -190,7 +169,7 @@ class Bindings implements V8CpuProfilerBindings {
190
169
191
170
return PrivateCpuProfilerBindings . stopProfiling (
192
171
name ,
193
- format as unknown as any ,
172
+ format as unknown as number ,
194
173
threadId ,
195
174
! ! global . _sentryDebugIds ,
196
175
) ;
@@ -199,4 +178,4 @@ class Bindings implements V8CpuProfilerBindings {
199
178
200
179
export const CpuProfilerBindings = new Bindings ( ) ;
201
180
202
- export * from './types' ;
181
+ export * from './types' ;
0 commit comments