Skip to content

Commit 45d02ed

Browse files
committed
Mach-o type libraries are already added
1 parent 59d8d8a commit 45d02ed

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

platform/mac/platform_mac.cpp

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ class MacX86Platform: public Platform
2626
if (cc)
2727
RegisterStdcallCallingConvention(cc);
2828
}
29+
30+
virtual bool GetFallbackEnabled() override
31+
{
32+
return false;
33+
}
2934
};
3035

3136

@@ -45,6 +50,11 @@ class MacX64Platform: public Platform
4550
RegisterStdcallCallingConvention(cc);
4651
}
4752
}
53+
54+
virtual bool GetFallbackEnabled() override
55+
{
56+
return false;
57+
}
4858
};
4959

5060

@@ -64,6 +74,11 @@ class MacArmv7Platform: public Platform
6474
RegisterStdcallCallingConvention(cc);
6575
}
6676
}
77+
78+
virtual bool GetFallbackEnabled() override
79+
{
80+
return false;
81+
}
6782
};
6883

6984

@@ -83,6 +98,11 @@ class MacArm64Platform: public Platform
8398
RegisterStdcallCallingConvention(cc);
8499
}
85100
}
101+
102+
virtual bool GetFallbackEnabled() override
103+
{
104+
return false;
105+
}
86106
};
87107

88108

0 commit comments

Comments
 (0)