aboutsummaryrefslogtreecommitdiffhomepage
path: root/comgr/src/lib.rs
diff options
context:
space:
mode:
authorAndrzej Janik <[email protected]>2024-11-02 16:02:52 +0100
committerAndrzej Janik <[email protected]>2024-11-02 16:02:52 +0100
commit14edb4325e779ccf5ae47c6b72d45752af696c65 (patch)
treeed4ceea07824d5aa9d3d4e16e6b1d05e439d4793 /comgr/src/lib.rs
parentb4cb3ade63af94ccb709f2c0858253b13125fcc6 (diff)
downloadZLUDA-ockl_fix.tar.gz
ZLUDA-ockl_fix.zip
Fix linking of AMD device librariesockl_fix
Diffstat (limited to 'comgr/src/lib.rs')
-rw-r--r--comgr/src/lib.rs25
1 files changed, 14 insertions, 11 deletions
diff --git a/comgr/src/lib.rs b/comgr/src/lib.rs
index 129dc14..94ba6ef 100644
--- a/comgr/src/lib.rs
+++ b/comgr/src/lib.rs
@@ -127,24 +127,27 @@ pub fn compile_bitcode(
ptx_impl,
)?;
bitcode_data_set.add(&stdlib_bitcode_data)?;
- let lang_action_info = ActionInfo::new()?;
- lang_action_info.set_isa_name(gcn_arch)?;
- lang_action_info.set_language(amd_comgr_language_t::AMD_COMGR_LANGUAGE_LLVM_IR)?;
- let with_device_libs = do_action(
- &bitcode_data_set,
- &lang_action_info,
- amd_comgr_action_kind_t::AMD_COMGR_ACTION_COMPILE_SOURCE_WITH_DEVICE_LIBS_TO_BC,
- )?;
+ let linking_info = ActionInfo::new()?;
let linked_data_set = do_action(
- &with_device_libs,
- &lang_action_info,
+ &bitcode_data_set,
+ &linking_info,
amd_comgr_action_kind_t::AMD_COMGR_ACTION_LINK_BC_TO_BC,
)?;
+ let link_with_device_libs_info = ActionInfo::new()?;
+ link_with_device_libs_info.set_isa_name(gcn_arch)?;
+ link_with_device_libs_info.set_language(amd_comgr_language_t::AMD_COMGR_LANGUAGE_LLVM_IR)?;
+ // This makes no sense, but it makes ockl linking work
+ link_with_device_libs_info.set_options([c"-Xclang", c"-mno-link-builtin-bitcode-postopt"].into_iter())?;
+ let with_device_libs = do_action(
+ &linked_data_set,
+ &link_with_device_libs_info,
+ amd_comgr_action_kind_t::AMD_COMGR_ACTION_COMPILE_SOURCE_WITH_DEVICE_LIBS_TO_BC,
+ )?;
let compile_action_info = ActionInfo::new()?;
compile_action_info.set_isa_name(gcn_arch)?;
compile_action_info.set_options(iter::once(c"-O3"))?;
let reloc_data_set = do_action(
- &linked_data_set,
+ &with_device_libs,
&compile_action_info,
amd_comgr_action_kind_t::AMD_COMGR_ACTION_CODEGEN_BC_TO_RELOCATABLE,
)?;