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"
9 #include "externaltask.h"
10 #include "filetarget.h"
15 AndroidCompiler::AndroidCompiler(Builder &b, const Architecture &a, const string &t, const AndroidNdk &n):
19 if(ndk.get_root_dir().empty())
20 problems.push_back("Android NDK not found");
21 else if(ndk.get_bin_dir().empty())
22 problems.push_back("Android NDK toolchain not found");
24 set_command((ndk.get_bin_dir()/command).str());
26 if(ndk.get_platform_sysroot().empty())
27 problems.push_back("Android platform not found");
28 else if(!ndk.get_common_sysroot().empty())
30 build_info.sysroot = ndk.get_common_sysroot();
31 /* The common sysroot has asm headers in arch directories and the
32 compiler doesn't pick them up automatically */
33 build_info.incpath.push_back(ndk.get_common_sysroot()/"usr/include"/architecture->get_cross_prefix());
36 build_info.sysroot = ndk.get_platform_sysroot();
39 build_info.libs.push_back("gnustl_static");
42 void AndroidCompiler::do_prepare()
44 GnuCompiler::do_prepare();
47 string version_str = format("%d.%d.%d", version>>16, (version>>8)&0xFF, version&0xFF);
48 FS::Path libstdcxx_dir = ndk.get_root_dir()/"sources"/"cxx-stl"/"gnu-libstdc++";
49 FS::Path libstdcxx_path;
52 libstdcxx_path = libstdcxx_dir/version_str;
53 if(FS::exists(libstdcxx_path))
56 string::size_type dot = version_str.rfind('.');
59 problems.push_back("C++ standard library not found");
63 version_str = version_str.substr(0, dot);
66 FS::Path public_dir = libstdcxx_path/"include";
67 system_path.push_back(public_dir);
68 build_info.incpath.push_back(public_dir);
70 FS::Path arch_path = libstdcxx_path/"libs";
71 builder.get_logger().log("files", format("Traversing %s", arch_path.str()));
72 string arch_dir = architecture->best_match(list_files(arch_path));
75 build_info.incpath.push_back(libstdcxx_path/"libs"/arch_dir/"include");
76 build_info.libpath.push_back(libstdcxx_path/"libs"/arch_dir);