}
}
-void Architecture::set_tool(const string &t, const string &p)
-{
- tools[t] = p;
-}
-
void Architecture::set_cross_prefix(const string &p)
{
cross_prefix = p;
}
-std::string Architecture::get_tool(const string &t) const
-{
- StringMap::const_iterator i = tools.find(t);
- if(i!=tools.end())
- {
- if(i->second[0]=='-')
- return cross_prefix+i->second;
- else
- return i->second;
- }
-
- const Architecture &native_arch = builder.get_native_arch();
- if(this!=&native_arch)
- {
- if(!cross_prefix.empty())
- return cross_prefix+"-"+native_arch.get_tool(t);
- else
- return native_arch.get_tool(t);
- }
- else
- throw invalid_argument("Unknown tool");
-}
-
bool Architecture::match_name(const string &pattern) const
{
vector<string> parts = split(pattern, "-");
arch(a)
{
add("prefix", &Architecture::cross_prefix);
- add("tool", &Loader::tool);
-}
-
-void Architecture::Loader::tool(const string &t, const string &p)
-{
- arch.tools[t] = p;
}
#include <msp/datafile/loader.h>
#include "buildinfo.h"
-#include "misc.h"
#include "pattern.h"
class Builder;
public:
Loader(Architecture &);
Architecture &get_object() { return arch; }
- private:
- void tool(const std::string &t, const std::string &p);
};
typedef std::list<Pattern> PatternList;
std::string name;
bool native;
std::string cross_prefix;
- StringMap tools;
PatternList sharedlib_patterns;
PatternList staticlib_patterns;
PatternList executable_patterns;
bool match_name(const std::string &) const;
bool is_native() const { return native; }
- void set_tool(const std::string &t, const std::string &p);
void set_cross_prefix(const std::string &);
- std::string get_tool(const std::string &t) const;
const std::string &get_cross_prefix() const { return cross_prefix; }
const PatternList &get_shared_library_patterns() const { return sharedlib_patterns; }
FileTarget *VirtualFileSystem::get_library(const string &lib, const FS::Path &path, LibMode mode)
{
- // Populate a list of candidate filenames
- StringList candidates;
-
const Architecture &arch = builder.get_current_arch();
- if(mode!=ALL_STATIC)
- fill_candidates(candidates, arch.get_shared_library_patterns(), lib);
-
- /* Static libraries are always considered, since sometimes shared versions
- may not be available */
- fill_candidates(candidates, arch.get_static_library_patterns(), lib);
- for(StringList::iterator i=candidates.begin(); i!=candidates.end(); ++i)
+ /* Try dynamic libraries only if library mode permits it */
+ if(mode!=ALL_STATIC)
{
- FS::Path full = path/ *i;
- FileTarget *tgt = get_target(full);
-
- if(tgt)
+ FS::Path fn = try_patterns(path, arch.get_shared_library_patterns(), lib);
+ if(!fn.empty())
{
- Target *real_tgt = tgt->get_real_target();
-
- /* Ignore dynamic libraries from local packages unless library mode is
- DYNAMIC */
- if(dynamic_cast<SharedLibrary *>(real_tgt) && mode!=DYNAMIC)
- continue;
- else if(tgt)
+ FileTarget *tgt = get_target(fn);
+ if(!tgt)
+ return new SystemLibrary(builder, fn.str());
+ else if(mode==DYNAMIC || !tgt->get_package())
return tgt;
}
- else if(FS::is_reg(full))
- {
- tgt = new SystemLibrary(builder, full.str());
+ }
+
+ /* Static libraries are always considered, since sometimes shared versions
+ may not be available */
+ FS::Path fn = try_patterns(path, arch.get_static_library_patterns(), lib);
+ if(!fn.empty())
+ {
+ if(FileTarget *tgt = get_target(fn))
return tgt;
- }
+ else
+ return new SystemLibrary(builder, fn.str());
}
return 0;
}
-void VirtualFileSystem::fill_candidates(StringList &candidates, const list<Pattern> &patterns, const string &base)
+FS::Path VirtualFileSystem::try_patterns(const FS::Path &dir, const list<Pattern> &patterns, const string &base)
{
for(list<Pattern>::const_iterator i=patterns.begin(); i!=patterns.end(); ++i)
- candidates.push_back(i->apply(base));
+ {
+ FS::Path full = dir/i->apply(base);
+ if(get_target(full) || FS::is_reg(full))
+ return full;
+ }
+
+ return FS::Path();
}