diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-10-07 10:24:09 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-10-07 10:24:09 +0000 |
commit | aa9c9a9f14508d25be943bd42a3d4e8539bd4e66 (patch) | |
tree | f12aae6523e2757181d93122dc1c336829cf57e9 | |
parent | 1421ae7eb67cb994cee5784d97fa313274afa78c (diff) |
audio/soundtouch: enable OPENMP and OPTIMIZED_CFLAGS on powerpc64
-rw-r--r-- | audio/soundtouch/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/audio/soundtouch/Makefile b/audio/soundtouch/Makefile index a715b7324da4..e23147cd5121 100644 --- a/audio/soundtouch/Makefile +++ b/audio/soundtouch/Makefile @@ -23,9 +23,11 @@ OPTIONS_DEFINE= INTEGER_SAMPLES OPTIMIZED_CFLAGS OPTIONS_DEFINE_aarch64= NEON OPENMP OPTIONS_DEFINE_amd64= OPENMP OPTIONS_DEFINE_armv7= NEON +OPTIONS_DEFINE_powerpc64= OPENMP OPTIONS_DEFAULT= ${MACHINE_CPU:Msoftfp:C/.+/INTEGER_SAMPLES/} OPTIONS_DEFAULT_aarch64=NEON OPENMP OPTIMIZED_CFLAGS OPTIONS_DEFAULT_amd64= OPENMP OPTIMIZED_CFLAGS +OPTIONS_DEFAULT_powerpc64= OPENMP OPTIMIZED_CFLAGS INTEGER_SAMPLES_DESC= Use integer sample format NEON_DESC= Use NEON instructions |