diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-07-10 14:40:57 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-07-10 14:40:57 +0000 |
commit | 8c6113bcffdd4be4e178fd6d72c3b9c4fb7d6639 (patch) | |
tree | 85c1616f59d3e6a585a2f4424267e1db9f5c9d58 | |
parent | d1c38384368935645049953f1c07565212e7fdc6 (diff) | |
download | FreeBSD-src-8c6113bcffdd4be4e178fd6d72c3b9c4fb7d6639.zip FreeBSD-src-8c6113bcffdd4be4e178fd6d72c3b9c4fb7d6639.tar.gz |
powerpc64 floating-point is identical to powerpc, so use the same
code on both architectures.
-rw-r--r-- | lib/msun/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/msun/Makefile b/lib/msun/Makefile index 4a1b73a..35077a3 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -14,6 +14,8 @@ .if ${MACHINE_ARCH} == "i386" ARCH_SUBDIR= i387 +.elif ${MACHINE_ARCH} == "powerpc64" +ARCH_SUBDIR= powerpc .else ARCH_SUBDIR= ${MACHINE_ARCH} .endif |