diff options
author | Michal Marek <mmarek@suse.cz> | 2011-04-20 07:45:30 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-04-20 09:39:22 -0400 |
commit | 40df759e2b9ec945f1a5ddc61b3fdfbb6583257e (patch) | |
tree | 1d727592c947dbfe33ddf89718201615488088e8 /Documentation/kbuild | |
parent | a8b8017c34fefcb763d8b06c294b58d1c480b2e4 (diff) |
kbuild: Fix build with binutils <= 2.19
The D option of ar is only available in newer versions.
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r-- | Documentation/kbuild/makefiles.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index 5d145bb443c0..40e082bb8c52 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt | |||
@@ -955,6 +955,11 @@ When kbuild executes, the following steps are followed (roughly): | |||
955 | used when linking modules. This is often a linker script. | 955 | used when linking modules. This is often a linker script. |
956 | From commandline LDFLAGS_MODULE shall be used (see kbuild.txt). | 956 | From commandline LDFLAGS_MODULE shall be used (see kbuild.txt). |
957 | 957 | ||
958 | KBUILD_ARFLAGS Options for $(AR) when creating archives | ||
959 | |||
960 | $(KBUILD_ARFLAGS) set by the top level Makefile to "D" (deterministic | ||
961 | mode) if this option is supported by $(AR). | ||
962 | |||
958 | --- 6.2 Add prerequisites to archprepare: | 963 | --- 6.2 Add prerequisites to archprepare: |
959 | 964 | ||
960 | The archprepare: rule is used to list prerequisites that need to be | 965 | The archprepare: rule is used to list prerequisites that need to be |