mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
Toolchain+LibM: Make C++ standard library math functions available
With this fixed we get libstdc++v3's aliases for C99 math functions in the std namespace. Unfortunately for this to work the toolchain needs to be rebuilt. The good news are that this by itself does not require a toolchain rebuild just yet.
This commit is contained in:
parent
bf31b0da7d
commit
e6747fefa7
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ __BEGIN_DECLS
|
|||
#define isless(x, y) __builtin_isless((x), (y))
|
||||
#define islessequal(x, y) __builtin_islessequal((x), (y))
|
||||
#define islessgreater(x, y) __builtin_islessgreater((x), (y))
|
||||
#define isunordered(x, y) __builtin_isunoredered((x), (y))
|
||||
#define isunordered(x, y) __builtin_isunordered((x), (y))
|
||||
|
||||
#define DOUBLE_MAX ((double)0b0111111111101111111111111111111111111111111111111111111111111111)
|
||||
#define DOUBLE_MIN ((double)0b0000000000010000000000000000000000000000000000000000000000000000)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue