]> git.tdb.fi Git - builder.git/blobdiff - source/binary.h
Only use the -m flag on native arch
[builder.git] / source / binary.h
index 303bd51fa60589de50f6cc6ff229f0f44ce87af1..b4357581fc905fde0b5110cac788f4149306196e 100644 (file)
@@ -13,11 +13,12 @@ library.
 class Binary: public FileTarget
 {
 protected:
+       std::list<ObjectFile *> objects;
+
        Binary(Builder &, const Msp::FS::Path &);
        Binary(Builder &, const Component &, const std::string &, const std::list<ObjectFile *> &);
 
-public:
-       virtual void find_depends();
+       virtual void find_dependencies();
 };
 
 #endif