File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/cubejs-backend-shared/src Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ type IsNativeSupportedResult = true | {
5656} ;
5757
5858export function isNativeSupported ( ) : IsNativeSupportedResult {
59- if ( process . platform === 'linux' ) {
59+ if ( process . platform === 'linux' && [ 'x64' , 'arm64' ] . includes ( process . arch ) ) {
6060 if ( detectLibc ( ) === 'musl' ) {
6161 displayCLIWarningOnce (
6262 'is-native-supported' ,
@@ -72,12 +72,11 @@ export function isNativeSupported(): IsNativeSupportedResult {
7272 return true ;
7373 }
7474
75- if ( process . platform === 'win32' ) {
75+ if ( process . platform === 'darwin' && [ 'x64' , 'arm64' ] . includes ( process . arch ) ) {
7676 return true ;
7777 }
7878
79- // TODO(ovr): https://github.com/cube-js/cube/pull/6093
80- if ( process . platform === 'darwin' && process . arch === 'x64' ) {
79+ if ( process . platform === 'win32' && process . arch === 'x64' ) {
8180 return true ;
8281 }
8382
You can’t perform that action at this time.
0 commit comments