From: Alexey Dobriyan <adobriyan@gmail.com>
To: masahiroy@kernel.org, michal.lkml@markovi.net
Cc: linux-kbuild@vger.kernel.org
Subject: [PATCH] cc-can-link.sh: check for linking capability in a more robust way
Date: Sat, 3 Jul 2021 14:21:40 +0300 [thread overview]
Message-ID: <YOBIRA8oXQh4Antq@localhost.localdomain> (raw)
Compiling "printf("");" doesn't necessarily check for linking capability
as printf can be optimised for constants strings even at -O0:
0000000000401106 <main>:
401106: push rbp
401107: mov rbp,rsp
40110a: mov eax,0x0
40110f: pop rbp
401110: ret
Pass something from the command line to disable optimisations:
0000000000401126 <main>:
401126: push rbp
401127: mov rbp,rsp
40112a: sub rsp,0x10
40112e: mov DWORD PTR [rbp-0x4],edi
401131: mov QWORD PTR [rbp-0x10],rsi
401135: mov rax,QWORD PTR [rbp-0x10]
401139: add rax,0x8
40113d: mov rax,QWORD PTR [rax]
401140: mov rdi,rax
401143: mov eax,0x0
401148: *** call 401030 <printf@plt>
40114d: mov eax,0x0
401152: leave
401153: ret
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---
scripts/cc-can-link.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- a/scripts/cc-can-link.sh
+++ b/scripts/cc-can-link.sh
@@ -3,9 +3,9 @@
cat << "END" | $@ -x c - -o /dev/null >/dev/null 2>&1
#include <stdio.h>
-int main(void)
+int main(int argc, char *argv[])
{
- printf("");
+ printf(argv[1]);
return 0;
}
END
next reply other threads:[~2021-07-03 11:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-03 11:21 Alexey Dobriyan [this message]
2021-07-05 16:33 ` [PATCH] cc-can-link.sh: check for linking capability in a more robust way Masahiro Yamada
2021-07-05 21:22 ` Alexey Dobriyan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YOBIRA8oXQh4Antq@localhost.localdomain \
--to=adobriyan@gmail.com \
--cc=linux-kbuild@vger.kernel.org \
--cc=masahiroy@kernel.org \
--cc=michal.lkml@markovi.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox