| 911 | } |
| 912 | |
| 913 | bool build_archive_from_file(const string& src_file_name, |
| 914 | const string& dst_archive_file_name, |
| 915 | const llvm_toolchain::compile_options& options, |
| 916 | const vector<target>& targets, |
| 917 | const bool use_precompiled_header) { |
| 918 | return build_archive(src_file_name, true, dst_archive_file_name, options, targets, use_precompiled_header); |
| 919 | } |
| 920 | |
| 921 | bool build_archive_from_memory(const string& src_code, |
| 922 | const string& dst_archive_file_name, |
nothing calls this directly
no test coverage detected