X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuilder.h;h=331c50ab9a57be2c92fb2ed91a4fab98c598d2b0;hb=d1f9551e05c9d341149eb490e05b1465d3d6b711;hp=e6eb0ea5c2843b3b813dbcc497a7379dfa40b71d;hpb=3938f8030b1f62802decce19777ce70fdafaff10;p=builder.git diff --git a/source/builder.h b/source/builder.h index e6eb0ea..331c50a 100644 --- a/source/builder.h +++ b/source/builder.h @@ -1,7 +1,6 @@ #ifndef BUILDER_H_ #define BUILDER_H_ -#include #include #include #include @@ -48,9 +47,9 @@ private: PackageManager package_manager; Architecture native_arch; - Architecture *current_arch; + Architecture *current_arch = 0; std::map build_types; - BuildType *build_type; + BuildType *build_type = 0; Toolchain toolchain; VirtualFileSystem vfs; BuildGraph build_graph; @@ -58,9 +57,9 @@ private: const Logger *logger; Msp::FS::Path prefix; - Msp::FS::Path tempdir; + Msp::FS::Path tempdir = "temp"; - Loader *top_loader; + Loader *top_loader = 0; public: Builder(); @@ -73,7 +72,7 @@ public: const Architecture &get_native_arch() const { return native_arch; } void set_build_type(const std::string &); std::vector get_build_types() const; - const BuildType &get_build_type() const { return *build_type; } + const BuildType &get_build_type() const; BuildGraph &get_build_graph() { return build_graph; } void set_prefix(const Msp::FS::Path &); void set_temp_directory(const Msp::FS::Path &); @@ -86,7 +85,7 @@ public: void set_logger(const Logger *); const Logger &get_logger() const { return *logger; } - std::list collect_problems() const; + std::vector collect_problems() const; /** Loads a build file. If opts is not null, it is used to configure any packages loaded from this file. If all is true, external packages are also