mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-04-20 11:35:48 +00:00
fix: add lib64 to LD_LIBRARY_PATH in default profiles
This commit is contained in:
parent
843a06d4ee
commit
7d06bfa4a9
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ pub fn valve_index_profile() -> Profile {
|
|||
environment.insert("XRT_COMPOSITOR_COMPUTE".into(), "1".into());
|
||||
environment.insert("SURVIVE_GLOBALSCENESOLVER".into(), "0".into());
|
||||
environment.insert("SURVIVE_TIMECODE_OFFSET_MS".into(), "-6.94".into());
|
||||
environment.insert("LD_LIBRARY_PATH".into(), format!("{pfx}/lib", pfx = prefix));
|
||||
environment.insert("LD_LIBRARY_PATH".into(), format!("{pfx}/lib:{pfx}/lib64", pfx = prefix));
|
||||
Profile {
|
||||
uuid: "valve-index-default".into(),
|
||||
name: format!("Valve Index - {name} Default", name = APP_NAME),
|
||||
|
|
|
@ -10,7 +10,7 @@ pub fn wivrn_profile() -> Profile {
|
|||
let data_dir = get_data_dir();
|
||||
let prefix = format!("{data}/prefixes/wivrn_default", data = data_dir);
|
||||
let mut environment: HashMap<String, String> = HashMap::new();
|
||||
environment.insert("LD_LIBRARY_PATH".into(), format!("{pfx}/lib", pfx = prefix));
|
||||
environment.insert("LD_LIBRARY_PATH".into(), format!("{pfx}/lib:{pfx}/lib64", pfx = prefix));
|
||||
Profile {
|
||||
uuid: "wivrn-default".into(),
|
||||
name: format!("WiVRn - {name} Default", name = APP_NAME),
|
||||
|
|
Loading…
Add table
Reference in a new issue