]> git.tdb.fi Git - builder.git/blobdiff - builderrc
Add support for statically linking the C++ standard library
[builder.git] / builderrc
index c9133d0df496149822e5ce049f8778204d17316e..207c2d6ab0e1e9c6444c2158840549bcde5cd7b7 100644 (file)
--- a/builderrc
+++ b/builderrc
@@ -1,11 +1,16 @@
-architecture "arm"
+architecture "arm-linux"
 {
        prefix "arm-linux-gnueabi";
 };
 
 architecture "windows"
 {
-       prefix "i586-mingw32msvc";
+       prefix "i686-w64-mingw32";
+};
+
+architecture "arm-android"
+{
+       prefix "arm-linux-androideabi";
 };
 
 build_type "debug"
@@ -16,6 +21,7 @@ build_type "debug"
                define "DEBUG" "1";
                warning_level 3;
                fatal_warnings true;
+               runtime_path_mode ABSOLUTE;
        };
 };
 
@@ -28,6 +34,7 @@ build_type "optimized_debug"
                optimize 2;
                warning_level 3;
                fatal_warnings true;
+               runtime_path_mode ABSOLUTE;
        };
 };
 
@@ -38,6 +45,7 @@ build_type "release"
                optimize 3;
                strip true;
                warning_level 1;
+               runtime_path_mode RELATIVE;
        };
 };