Skip to content

Commit fedb88a

Browse files
committed
...
1 parent c02b84b commit fedb88a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/buildomat/jobs/p5p.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ REL_LINK_SRC=target/i686-unknown-illumos/release
5555
mkdir -p $REL_SRC
5656
cp /input/xde/work/release/xde $REL_SRC
5757
mkdir -p $DBG_SRC
58-
cp /input/xde/work/debug/xde $DBG_SRC
58+
cp /input/xde/work/debug/xde.dbg $DBG_SRC/xde
5959

6060
mkdir -p $REL_LINK_SRC
6161
cp /input/xde/work/release/xde_link.so $REL_LINK_SRC/libxde_link.so

.github/buildomat/jobs/xde.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ ptime cargo xtask build
9999
# Inspect the kernel module for bad relocations in case the old
100100
# codegen issue ever shows its face again.
101101
#
102-
if elfdump $DBG_SRC/xde.dbg | grep GOTPCREL; then
102+
if elfdump $DBG_SRC/xde | grep GOTPCREL; then
103103
echo "found GOTPCREL relocation in debug build"
104104
exit 1
105105
fi
@@ -109,7 +109,7 @@ if elfdump $REL_SRC/xde | grep GOTPCREL; then
109109
exit 1
110110
fi
111111

112-
cp $DBG_SRC/xde.dbg $DBG_TGT/
112+
cp $DBG_SRC/xde $DBG_TGT/xde.dbg
113113
sha256sum $DBG_TGT/xde.dbg > $DBG_TGT/xde.dbg.sha256
114114

115115
cp $DBG_LINK_SRC/libxde_link.so $DBG_TGT/xde_link.dbg.so

0 commit comments

Comments
 (0)