-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CDRIVER-4465 - Missing math library for trig functions - Patch IntelDFP to correctly identify x86_64
- Loading branch information
1 parent
ec15461
commit 5c53478
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/src/third_party/IntelRDFPMathLib20U1/LIBRARY/float128/architecture.h b/src/third_party/IntelRDFPMathLib20U1/LIBRARY/float128/architecture.h | ||
index ef8a5b7..98d86c1 100644 | ||
--- a/src/third_party/IntelRDFPMathLib20U1/LIBRARY/float128/architecture.h | ||
+++ b/src/third_party/IntelRDFPMathLib20U1/LIBRARY/float128/architecture.h | ||
@@ -39,7 +39,7 @@ | ||
# define merced | ||
#endif | ||
|
||
-#if defined(ct) || defined(efi2) | ||
+#if defined(ct) || defined(efi2) || defined(__x86_64__) | ||
# undef _M_AMD64 | ||
# define _M_AMD64 | ||
#endif |