diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-19 13:07:08 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-19 13:07:08 -0500 |
commit | 27a22ee4c7d5839fd7e3e441c9d675c8a5c4c22c (patch) | |
tree | 309fd7788b0695c5273416840d7a7a08dcecda5c /arch/powerpc | |
parent | b2b89ebfc0f0287e20516a5443d93af309b800cf (diff) | |
parent | a75f8b8dab0f73459fa47a1daa10c84c4e8400a8 (diff) |
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild updates from Michal Marek:
- several cleanups in kbuild
- serialize multiple *config targets so that 'make defconfig kvmconfig'
works
- The cc-ifversion macro got support for an else-branch
* 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
kbuild,gcov: simplify kernel/gcov/Makefile more
kbuild: allow cc-ifversion to have the argument for false condition
kbuild,gcov: simplify kernel/gcov/Makefile
kbuild,gcov: remove unnecessary workaround
kbuild: do not add $(call ...) to invoke cc-version or cc-fullversion
kbuild: fix cc-ifversion macro
kbuild: drop $(version_h) from MRPROPER_FILES
kbuild: use mixed-targets when two or more config targets are given
kbuild: remove redundant line from bounds.h/asm-offsets.h
kbuild: merge bounds.h and asm-offsets.h rules
kbuild: Drop support for clean-rule
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index 132d9c681d6a..fc502e042438 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile | |||
@@ -314,7 +314,7 @@ TOUT := .tmp_gas_check | |||
314 | # - Require gcc 4.0 or above on 64-bit | 314 | # - Require gcc 4.0 or above on 64-bit |
315 | # - gcc-4.2.0 has issues compiling modules on 64-bit | 315 | # - gcc-4.2.0 has issues compiling modules on 64-bit |
316 | checkbin: | 316 | checkbin: |
317 | @if test "$(call cc-version)" = "0304" ; then \ | 317 | @if test "$(cc-version)" = "0304" ; then \ |
318 | if ! /bin/echo mftb 5 | $(AS) -v -mppc -many -o $(TOUT) >/dev/null 2>&1 ; then \ | 318 | if ! /bin/echo mftb 5 | $(AS) -v -mppc -many -o $(TOUT) >/dev/null 2>&1 ; then \ |
319 | echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '; \ | 319 | echo -n '*** ${VERSION}.${PATCHLEVEL} kernels no longer build '; \ |
320 | echo 'correctly with gcc-3.4 and your version of binutils.'; \ | 320 | echo 'correctly with gcc-3.4 and your version of binutils.'; \ |
@@ -322,13 +322,13 @@ checkbin: | |||
322 | false; \ | 322 | false; \ |
323 | fi ; \ | 323 | fi ; \ |
324 | fi | 324 | fi |
325 | @if test "$(call cc-version)" -lt "0400" \ | 325 | @if test "$(cc-version)" -lt "0400" \ |
326 | && test "x${CONFIG_PPC64}" = "xy" ; then \ | 326 | && test "x${CONFIG_PPC64}" = "xy" ; then \ |
327 | echo -n "Sorry, GCC v4.0 or above is required to build " ; \ | 327 | echo -n "Sorry, GCC v4.0 or above is required to build " ; \ |
328 | echo "the 64-bit powerpc kernel." ; \ | 328 | echo "the 64-bit powerpc kernel." ; \ |
329 | false ; \ | 329 | false ; \ |
330 | fi | 330 | fi |
331 | @if test "$(call cc-fullversion)" = "040200" \ | 331 | @if test "$(cc-fullversion)" = "040200" \ |
332 | && test "x${CONFIG_MODULES}${CONFIG_PPC64}" = "xyy" ; then \ | 332 | && test "x${CONFIG_MODULES}${CONFIG_PPC64}" = "xyy" ; then \ |
333 | echo -n '*** GCC-4.2.0 cannot compile the 64-bit powerpc ' ; \ | 333 | echo -n '*** GCC-4.2.0 cannot compile the 64-bit powerpc ' ; \ |
334 | echo 'kernel with modules enabled.' ; \ | 334 | echo 'kernel with modules enabled.' ; \ |