Skip to content

Commit

Permalink
Look for libdrm in /usr/lib64 when using level_zero.
Browse files Browse the repository at this point in the history
Former-commit-id: 532adf98d447dbd53289777f19a80fd8c75ddc36
  • Loading branch information
wspear committed Dec 27, 2021
1 parent 69bc944 commit a0ef293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -2830,7 +2830,7 @@ for arg in "$@"; do
echo "Error: Cannot access Level Zero libze_loader.so in $l0dir/lib or $l0dir/lib64 or $l0dir/x86_64-linux-gnu"
exit 1
fi
if [ ! -r $l0_lib_dir/libdrm.so -a ! -r /usr/lib/x86_64-linux-gnu/libdrm.so ]; then
if [ ! -r $l0_lib_dir/libdrm.so -a ! -r /usr/lib/x86_64-linux-gnu/libdrm.so -a ! -r /usr/lib64/libdrm.so ]; then

echo "Error: TAU requires libdrm.so to be installed in $l0_lib_dir. Please install libdrm-devel (Centos) or libdrm-dev (Ubuntu) package."
exit 1
Expand Down

0 comments on commit a0ef293

Please sign in to comment.