mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-13 20:41:07 +08:00
22 lines
517 B
Diff
22 lines
517 B
Diff
diff --git a/common_arm.h b/common_arm.h
|
|
index a3db995..5f45976 100644
|
|
--- a/common_arm.h
|
|
+++ b/common_arm.h
|
|
@@ -104,9 +104,16 @@ static inline int blas_quickdivide(blasint x, blasint y){
|
|
|
|
#if defined(ASSEMBLER) && !defined(NEEDPARAM)
|
|
|
|
+#if !defined(__APPLE__) && !defined(_WIN32)
|
|
+#define OPENBLAS_ARM_TYPE_FUNCTION .type REALNAME, %function ;
|
|
+#else
|
|
+#define OPENBLAS_ARM_TYPE_FUNCTION
|
|
+#endif
|
|
+
|
|
#define PROLOGUE \
|
|
.arm ;\
|
|
.global REALNAME ;\
|
|
+ OPENBLAS_ARM_TYPE_FUNCTION \
|
|
REALNAME:
|
|
|
|
#define EPILOGUE
|