]> git.tdb.fi Git - builder.git/blobdiff - source/architecture.cpp
Further changes for library compatibility
[builder.git] / source / architecture.cpp
index cf888f00e24ede0d80ee16952fb5c63724c53738..fbb246191af4ad0a6a627dd16e5977df01c6dc20 100644 (file)
@@ -9,7 +9,7 @@ Distributed under the LGPL
 #ifndef WIN32
 #include <sys/utsname.h>
 #endif
-#include <msp/strings/formatter.h>
+#include <msp/strings/format.h>
 #include <msp/strings/utils.h>
 #include "architecture.h"
 #include "builder.h"
@@ -56,6 +56,7 @@ const char *aliases[] =
 {
        "i586",  "pentium",
        "i686",  "pentiumpro",
+       "x86_64", "athlon64",
        "win32", "windows",
        0
 };
@@ -151,7 +152,7 @@ std::string Architecture::get_tool(const string &t) const
                        return native_arch.get_tool(t);
        }
        else
-               throw KeyError("Unknown tool", t);
+               throw invalid_argument("Unknown tool");
 }
 
 bool Architecture::match_name(const string &pattern) const
@@ -188,7 +189,7 @@ void Architecture::parse_specification(const string &spec)
                        if(part==types[j])
                        {
                                if(!type.empty() && part!=type)
-                                       throw InvalidParameterValue("Conflicting type specification");
+                                       throw invalid_argument("Conflicting type specification");
                                type = part;
                                ok = true;
                        }
@@ -199,7 +200,7 @@ void Architecture::parse_specification(const string &spec)
                                if(type.empty())
                                        type = cpus[j+1];
                                else if(cpus[j+1]!=type)
-                                       throw InvalidParameterValue("Conflicting CPU specification");
+                                       throw invalid_argument("Conflicting CPU specification");
                                cpu = part;
                                ok = true;
                        }
@@ -218,7 +219,7 @@ void Architecture::parse_specification(const string &spec)
                }
 
                if(!ok)
-                       throw InvalidParameterValue("Unrecognized part in arch specification: "+*i);
+                       throw invalid_argument("Unrecognized part in arch specification: "+*i);
        }
 }