Fix Windows version not allowing us to change GLIBC version for functions
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
b3eee4e89a
commit
b2ee008ba2
|
@ -153,7 +153,9 @@ namespace Porygon::Parser {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef WINDOWS
|
||||||
__asm__(".symver pow,pow@GLIBC_2.2.5");
|
__asm__(".symver pow,pow@GLIBC_2.2.5");
|
||||||
|
#endif
|
||||||
Token *Lexer::LexNumber(char16_t c) {
|
Token *Lexer::LexNumber(char16_t c) {
|
||||||
int64_t int_value = CharToInt(c);
|
int64_t int_value = CharToInt(c);
|
||||||
double float_value = 0;
|
double float_value = 0;
|
||||||
|
|
|
@ -15,8 +15,10 @@
|
||||||
#include "../UserData/UserDataFunction.hpp"
|
#include "../UserData/UserDataFunction.hpp"
|
||||||
#include "../Utilities/Random.hpp"
|
#include "../Utilities/Random.hpp"
|
||||||
|
|
||||||
|
#ifndef WINDOWS
|
||||||
__asm__(".symver log,log@GLIBC_2.2.5");
|
__asm__(".symver log,log@GLIBC_2.2.5");
|
||||||
__asm__(".symver exp,exp@GLIBC_2.2.5");
|
__asm__(".symver exp,exp@GLIBC_2.2.5");
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Porygon::StandardLibraries {
|
namespace Porygon::StandardLibraries {
|
||||||
using namespace Porygon::Evaluation;
|
using namespace Porygon::Evaluation;
|
||||||
|
|
Loading…
Reference in New Issue