]> git.tdb.fi Git - builder.git/blob - source/androidcompiler.cpp
07047937f41a1010d009349f8b46c2ccd6604051
[builder.git] / source / androidcompiler.cpp
1 #include <msp/fs/dir.h>
2 #include <msp/fs/stat.h>
3 #include <msp/fs/utils.h>
4 #include <msp/strings/format.h>
5 #include <msp/strings/utils.h>
6 #include "androidcompiler.h"
7 #include "androidtools.h"
8 #include "builder.h"
9 #include "externaltask.h"
10 #include "filetarget.h"
11
12 using namespace std;
13 using namespace Msp;
14
15 AndroidCompiler::AndroidCompiler(Builder &b, const Architecture &a, const string &t, const AndroidNdk &n):
16         CustomizedTool(b, t, a),
17         ndk(n)
18 {
19         set_command((tag=="CXX" ? "g++" : "gcc"), true);
20         if(ndk.get_root_dir().empty())
21                 problems.push_back("Android NDK not found");
22         else if(ndk.get_bin_dir().empty())
23                 problems.push_back("Android NDK toolchain not found");
24         else
25                 set_command((ndk.get_bin_dir()/command).str());
26
27         if(ndk.get_platform_sysroot().empty())
28                 problems.push_back("Android platform not found");
29         else if(!ndk.get_common_sysroot().empty())
30         {
31                 build_info.sysroot = ndk.get_common_sysroot();
32                 /* The common sysroot has asm headers in arch directories and the
33                 compiler doesn't pick them up automatically */
34                 build_info.incpath.push_back(ndk.get_common_sysroot()/"usr/include"/architecture->get_cross_prefix());
35         }
36         else
37                 build_info.sysroot = ndk.get_platform_sysroot();
38
39         if(tag=="CXX")
40                 build_info.libs.push_back("gnustl_static");
41 }
42
43 void AndroidCompiler::do_prepare(ToolData &tool) const
44 {
45         const Architecture &arch = *static_cast<const Tool &>(tool).get_architecture();
46
47         CustomizedTool::do_prepare(tool);
48         if(tag=="CXX")
49         {
50                 unsigned version = tool.extra_data;
51                 string version_str = format("%d.%d.%d", version>>16, (version>>8)&0xFF, version&0xFF);
52                 FS::Path libstdcxx_dir = ndk.get_root_dir()/"sources"/"cxx-stl"/"gnu-libstdc++";
53                 FS::Path libstdcxx_path;
54                 while(1)
55                 {
56                         libstdcxx_path = libstdcxx_dir/version_str;
57                         if(FS::exists(libstdcxx_path))
58                                 break;
59
60                         string::size_type dot = version_str.rfind('.');
61                         if(dot==string::npos)
62                         {
63                                 tool.problems.push_back("C++ standard library not found");
64                                 return;
65                         }
66
67                         version_str = version_str.substr(0, dot);
68                 }
69
70                 FS::Path public_dir = libstdcxx_path/"include";
71                 tool.system_path.push_back(public_dir);
72                 tool.build_info.incpath.push_back(public_dir);
73
74                 FS::Path arch_path = libstdcxx_path/"libs";
75                 builder.get_logger().log("files", "Traversing %s", arch_path.str());
76                 string arch_dir = arch.best_match(list_files(arch_path));
77                 if(!arch_dir.empty())
78                 {
79                         tool.build_info.incpath.push_back(libstdcxx_path/"libs"/arch_dir/"include");
80                         tool.build_info.libpath.push_back(libstdcxx_path/"libs"/arch_dir);
81                 }
82         }
83 }