Currently device lib path set by environment variable HIP_DEVICE_LIB_PATH
does not work due to extra "-L" added to each entry.
This patch fixes that by allowing argument name to be empty in addDirectoryList.
Differential D73299
[HIP] Fix environment variable HIP_DEVICE_LIB_PATH yaxunl on Jan 23 2020, 2:34 PM. Authored by
Details
Currently device lib path set by environment variable HIP_DEVICE_LIB_PATH This patch fixes that by allowing argument name to be empty in addDirectoryList.
Diff Detail
Event TimelineComment Actions
The fact that "-I" and "-L" are prepended to the paths is an implementation detail. Comment Actions This breaks check-clang on Windows: http://45.33.8.238/win/6843/step_7.txt You probably want "env FOO=bar" instead of "FOO=bar" in the test file. |