Fix Windows version not allowing us to change GLIBC version for functions
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user