aboutsummaryrefslogtreecommitdiffstats
path: root/lllc/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lllc/main.cpp')
-rw-r--r--lllc/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/lllc/main.cpp b/lllc/main.cpp
index a4c92d67..46416365 100644
--- a/lllc/main.cpp
+++ b/lllc/main.cpp
@@ -22,6 +22,7 @@
#include <fstream>
#include <iostream>
+#include <clocale>
#include <liblll/Compiler.h>
#include <libdevcore/CommonIO.h>
#include <libdevcore/CommonData.h>
@@ -52,10 +53,20 @@ void version()
exit(0);
}
+void setEnv() {
+ std::setlocale(LC_ALL, "C");
+#if !defined(WIN32) && !defined(MAC_OSX) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
+ if (!std::setlocale(LC_ALL, "")) {
+ setenv("LC_ALL", "C", 1);
+ }
+#endif
+}
+
enum Mode { Binary, Hex, Assembly, ParseTree, Disassemble };
int main(int argc, char** argv)
{
+ setEnv();
unsigned optimise = 1;
string infile;
Mode mode = Hex;