]> git.tdb.fi Git - builder.git/blobdiff - source/binary.cpp
Move the Component reference to Target and make it a pointer
[builder.git] / source / binary.cpp
index b3f018488347fc090d57839a0a0cc7344eaf40e2..ff98644ec53a6711ed3e63910a0876bd6447dc40 100644 (file)
@@ -13,22 +13,26 @@ using namespace std;
 using namespace Msp;
 
 Binary::Binary(Builder &b, const Component &c, const list<ObjectFile *> &objs):
-       FileTarget(b, &c.get_package(), generate_target_path(c)),
-       comp(c)
+       FileTarget(b, &c.get_package(), generate_target_path(c))
 {
+       component = &c;
        for(list<ObjectFile *>::const_iterator i=objs.begin(); i!=objs.end(); ++i)
                add_depend(*i);
 }
 
 void Binary::find_depends()
 {
-       LibMode libmode = comp.get_package().get_library_mode();
+       if(!component)
+               return;
+
+       const SourcePackage &spkg = component->get_package();
+       LibMode libmode = spkg.get_library_mode();
        if(dynamic_cast<SharedLibrary *>(this))
                libmode = DYNAMIC;
 
        list<const Component *> queue;
        list<Target *> dep_libs;
-       queue.push_back(&comp);
+       queue.push_back(component);
        while(!queue.empty())
        {
                const Component *c = queue.front();
@@ -46,10 +50,10 @@ void Binary::find_depends()
 
                                lib = lib->get_real_target();
                                if(StaticLibrary *stlib = dynamic_cast<StaticLibrary *>(lib))
-                                       queue.push_back(&stlib->get_component());
+                                       queue.push_back(stlib->get_component());
                        }
                        else
-                               builder.problem(comp.get_package().get_name(), format("Couldn't find library %s for %s", *i, name));
+                               builder.problem(spkg.get_name(), format("Couldn't find library %s for %s", *i, name));
                }
        }