Skip to content

Commit 13d18bd

Browse files
authored
Merge pull request #38 from ROCm-Developer-Tools/msearles/use-llvm-readelf
Use llvm-readelf rather than readelf
2 parents b87e1a3 + b2fedee commit 13d18bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

amd/hipcc/src/hipBin_amd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ void HipBinAmd::executeHipCCCmd(vector<string> argv) {
847847
isObj = (hipBinUtilPtr_->substringPresent(fileType, "ELF") ||
848848
hipBinUtilPtr_->substringPresent(fileType, "COFF"));
849849
if (hipBinUtilPtr_->substringPresent(fileType, "ELF")) {
850-
cmd = "readelf -e -W " + obj;
850+
cmd = "llvm-readelf -e -W " + obj;
851851
SystemCmdOut sysOut;
852852
sysOut = hipBinUtilPtr_->exec(cmd.c_str());
853853
string sections = sysOut.out;

0 commit comments

Comments
 (0)