Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Opus
Commits
fd562eef
Commit
fd562eef
authored
10 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
tests: fix linking for --enable-fixed-point on ARM
parent
32ff38bc
No related branches found
Branches containing commit
Tags
v1.1.1-beta
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile.am
+10
-0
10 additions, 0 deletions
Makefile.am
celt/tests/test_unit_mathops.c
+2
-0
2 additions, 0 deletions
celt/tests/test_unit_mathops.c
celt/tests/test_unit_rotation.c
+2
-0
2 additions, 0 deletions
celt/tests/test_unit_rotation.c
with
14 additions
and
0 deletions
Makefile.am
+
10
−
0
View file @
fd562eef
...
...
@@ -106,12 +106,22 @@ celt_tests_test_unit_laplace_LDADD = $(LIBM)
celt_tests_test_unit_mathops_SOURCES
=
celt/tests/test_unit_mathops.c
celt_tests_test_unit_mathops_LDADD
=
$(
LIBM
)
if
CPU_ARM
if
OPUS_ARM_EXTERNAL_ASM
celt_tests_test_unit_mathops_LDADD
+=
libopus.la
endif
endif
celt_tests_test_unit_mdct_SOURCES
=
celt/tests/test_unit_mdct.c
celt_tests_test_unit_mdct_LDADD
=
$(
LIBM
)
celt_tests_test_unit_rotation_SOURCES
=
celt/tests/test_unit_rotation.c
celt_tests_test_unit_rotation_LDADD
=
$(
LIBM
)
if
CPU_ARM
if
OPUS_ARM_EXTERNAL_ASM
celt_tests_test_unit_rotation_LDADD
+=
libopus.la
endif
endif
celt_tests_test_unit_types_SOURCES
=
celt/tests/test_unit_types.c
celt_tests_test_unit_types_LDADD
=
$(
LIBM
)
...
...
This diff is collapsed.
Click to expand it.
celt/tests/test_unit_mathops.c
+
2
−
0
View file @
fd562eef
...
...
@@ -56,6 +56,8 @@
#include
"x86/celt_lpc_sse.c"
#endif
#include
"x86/x86_celt_map.c"
#elif defined(OPUS_ARM_ASM) && defined(FIXED_POINT)
#include
"arm/arm_celt_map.c"
#endif
#ifdef FIXED_POINT
...
...
This diff is collapsed.
Click to expand it.
celt/tests/test_unit_rotation.c
+
2
−
0
View file @
fd562eef
...
...
@@ -54,6 +54,8 @@
#include
"x86/celt_lpc_sse.c"
#endif
#include
"x86/x86_celt_map.c"
#elif defined(OPUS_ARM_ASM) && defined(FIXED_POINT)
#include
"arm/arm_celt_map.c"
#endif
#define MAX_SIZE 100
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment