| 919 | } |
| 920 | |
| 921 | bool build_archive_from_memory(const string& src_code, |
| 922 | const string& dst_archive_file_name, |
| 923 | const llvm_toolchain::compile_options& options, |
| 924 | const vector<target>& targets, |
| 925 | const bool use_precompiled_header) { |
| 926 | return build_archive(src_code, false, dst_archive_file_name, options, targets, use_precompiled_header); |
| 927 | } |
| 928 | |
| 929 | pair<const binary_dynamic_v2*, const target_v2> |
| 930 | find_best_match_for_device(const compute_device& dev, const archive& ar) { |
nothing calls this directly
no test coverage detected