Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10499
b: refs/heads/master
c: 5beb5f3
h: refs/heads/master
i:
  10497: 70403c1
  10495: 8e06653
v: v3
  • Loading branch information
Randolph Chung authored and Kyle McMartin committed Oct 22, 2005
1 parent 7d4c6ce commit 2846194
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 675ec7a56a77da2dda27180c95ee82ae4879142a
refs/heads/master: 5beb5f32c56b70f79117e13a1abd54824a78466c
11 changes: 10 additions & 1 deletion trunk/arch/parisc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ NM = sh $(srctree)/arch/parisc/nm
CHECKFLAGS += -D__hppa__=1

ifdef CONFIG_64BIT
CROSS_COMPILE := hppa64-linux-
CROSS_COMPILE := $(shell if [ -x /usr/bin/hppa64-linux-gnu-gcc ]; then \
echo hppa64-linux-gnu-; else echo hppa64-linux-; fi)
UTS_MACHINE := parisc64
CHECKFLAGS += -D__LP64__=1 -m64
else
Expand All @@ -34,6 +35,14 @@ FINAL_LD=$(CROSS_COMPILE)ld --warn-common --warn-section-align

OBJCOPY_FLAGS =-O binary -R .note -R .comment -S

GCC_VERSION := $(call cc-version)
ifneq ($(shell if [ -z $(GCC_VERSION) ] ; then echo "bad"; fi ;),)
$(error Sorry, couldn't find ($(cc-version)).)
endif
ifneq ($(shell if [ $(GCC_VERSION) -lt 0303 ] ; then echo "bad"; fi ;),)
$(error Sorry, your compiler is too old ($(GCC_VERSION)). GCC v3.3 or above is required.)
endif

cflags-y := -pipe

# These flags should be implied by an hppa-linux configuration, but they
Expand Down

0 comments on commit 2846194

Please sign in to comment.