| 950 | } |
| 951 | |
| 952 | bool build_archive_from_file(const std::string& src_file_name, |
| 953 | const std::string& dst_archive_file_name, |
| 954 | const toolchain::compile_options& options, |
| 955 | const std::vector<target>& targets, |
| 956 | const bool use_precompiled_header) { |
| 957 | return build_archive(src_file_name, true, dst_archive_file_name, options, targets, use_precompiled_header); |
| 958 | } |
| 959 | |
| 960 | bool build_archive_from_memory(const std::string& src_code, |
| 961 | const std::string& dst_archive_file_name, |
nothing calls this directly
no test coverage detected