diff options
author | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-08-23 16:47:29 +0000 |
---|---|---|
committer | nwhitehorn <nwhitehorn@FreeBSD.org> | 2010-08-23 16:47:29 +0000 |
commit | c508e8d0565077199d527e8af2593119f8162450 (patch) | |
tree | fbad69d33a26616338834918ed996ea492a37b41 /cddl | |
parent | df9bc4850f3a6aef289d53c0c3d1fc78d63bdda2 (diff) | |
download | FreeBSD-src-c508e8d0565077199d527e8af2593119f8162450.zip FreeBSD-src-c508e8d0565077199d527e8af2593119f8162450.tar.gz |
Add powerpc64 to the list of architectures with real atomic operations.
Submitted by: imp
Diffstat (limited to 'cddl')
-rw-r--r-- | cddl/lib/libzpool/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/lib/libzpool/Makefile b/cddl/lib/libzpool/Makefile index 045e13d..6d8d59f 100644 --- a/cddl/lib/libzpool/Makefile +++ b/cddl/lib/libzpool/Makefile @@ -11,7 +11,7 @@ # LIST_SRCS .PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/uts/common/os # ATOMIC_SRCS -.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "powerpc64" .PATH: ${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/atomic/${MACHINE_ARCH} ATOMIC_SRCS= opensolaris_atomic.S .else |