diff options
author | Andi Kleen <ak@linux.intel.com> | 2014-02-08 03:01:13 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2014-02-13 23:25:00 -0500 |
commit | ccbef1674a1579842c7dbdf554efca85d2cd245a (patch) | |
tree | 233741914e81874ff08fe288e806a8b6c5d08d3f /scripts | |
parent | 7d02b490e93c199a15b3c4bce1c393588c1300ca (diff) |
Kbuild, lto: add ld-version and ld-ifversion macros
To check the linker version. Used by the LTO makefile.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Link: http://lkml.kernel.org/r/1391846481-31491-9-git-send-email-ak@linux.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Kbuild.include | 9 | ||||
-rwxr-xr-x | scripts/ld-version.sh | 8 |
2 files changed, 17 insertions, 0 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index 547e15daf03d..93a0da26582b 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include | |||
@@ -155,6 +155,15 @@ ld-option = $(call try-run,\ | |||
155 | # Important: no spaces around options | 155 | # Important: no spaces around options |
156 | ar-option = $(call try-run, $(AR) rc$(1) "$$TMP",$(1),$(2)) | 156 | ar-option = $(call try-run, $(AR) rc$(1) "$$TMP",$(1),$(2)) |
157 | 157 | ||
158 | # ld-version | ||
159 | # Usage: $(call ld-version) | ||
160 | # Note this is mainly for HJ Lu's 3 number binutil versions | ||
161 | ld-version = $(shell $(LD) --version | $(srctree)/scripts/ld-version.sh) | ||
162 | |||
163 | # ld-ifversion | ||
164 | # Usage: $(call ld-ifversion, -ge, 22252, y) | ||
165 | ld-ifversion = $(shell [ $(call ld-version) $(1) $(2) ] && echo $(3)) | ||
166 | |||
158 | ###### | 167 | ###### |
159 | 168 | ||
160 | ### | 169 | ### |
diff --git a/scripts/ld-version.sh b/scripts/ld-version.sh new file mode 100755 index 000000000000..198580d245e0 --- /dev/null +++ b/scripts/ld-version.sh | |||
@@ -0,0 +1,8 @@ | |||
1 | #!/usr/bin/awk -f | ||
2 | # extract linker version number from stdin and turn into single number | ||
3 | { | ||
4 | gsub(".*)", ""); | ||
5 | split($1,a, "."); | ||
6 | print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5]; | ||
7 | exit | ||
8 | } | ||