9434223752
* Use GNUInstallDirs * Install headers in $prefix/include directly, drop symlink * Install libraries in $prefix/lib directly, drop symlink * Move LICENSE.md from hsakmt-roct-dev to hsakmt-roct Change-Id: I43562f15cc03029be53e9ec18c337824d8116659 Signed-off-by: Slava Grigorev <slava.grigorev@amd.com> Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
20 satır
271 B
Plaintext
Çalıştırılabilir Dosya
20 satır
271 B
Plaintext
Çalıştırılabilir Dosya
#/bin/bash
|
|
|
|
set -e
|
|
|
|
do_ldconfig() {
|
|
echo /opt/rocm/lib > /etc/ld.so.conf.d/x86_64-libhsakmt.conf && ldconfig
|
|
}
|
|
|
|
case "$1" in
|
|
configure)
|
|
do_ldconfig
|
|
;;
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
echo "$1"
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|