Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
rui314 committed Feb 17, 2022
1 parent b5db63f commit a3f2a5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/elf/aarch64-hello-static.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ int main() {
}
EOF

aarch64-linux-gnu-gcc -B"`dirname "$mold"`" -o $t/exe $t/a.o -static
aarch64-linux-gnu-gcc -B. -o $t/exe $t/a.o -static

readelf -p .comment $t/exe | grep -qw mold

Expand Down
2 changes: 1 addition & 1 deletion test/elf/lto-gcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ int main() {
}
EOF

gcc -B"$(pwd)" -o $t/exe -flto $t/a.o
gcc -B. -o $t/exe -flto $t/a.o
$t/exe | grep -q 'Hello world'

echo OK

0 comments on commit a3f2a5c

Please sign in to comment.