Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
theora
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
theora
Commits
4903b0db
Commit
4903b0db
authored
18 years ago
by
j
Browse files
Options
Downloads
Patches
Plain Diff
- fix ./configure --disable-asm
- fix asm build of encoder on 64bit svn path=/trunk/theora/; revision=12867
parent
051ce3af
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure.ac
+1
-2
1 addition, 2 deletions
configure.ac
lib/Makefile.am
+1
-1
1 addition, 1 deletion
lib/Makefile.am
with
2 additions
and
3 deletions
configure.ac
+
1
−
2
View file @
4903b0db
...
...
@@ -120,14 +120,12 @@ if test "x${ac_enable_asm}" = xyes; then
fi
AC_DEFINE([OC_X86ASM], [], [enable x86 assambler optimization])
AM_CONDITIONAL(OC_X86ASM,true)
;;
x86_64)
cpu_x86_64=yes
cpu_optimization="64 bit x86"
AC_DEFINE([USE_ASM], [], [make use of asm optimization])
AC_DEFINE([OC_X86ASM], [], [enable x86 assambler optimization])
AM_CONDITIONAL(OC_X86ASM,true)
;;
esac
else
...
...
@@ -135,6 +133,7 @@ else
fi
AM_CONDITIONAL([CPU_x86_64], [test x$cpu_x86_64 = xyes])
AM_CONDITIONAL([CPU_x86_32], [test x$cpu_x86_32 = xyes])
AM_CONDITIONAL(OC_X86ASM,[test x$ac_enable_asm = xyes])
# Test whenever ld supports -version-script
AC_PROG_LD
...
...
This diff is collapsed.
Click to expand it.
lib/Makefile.am
+
1
−
1
View file @
4903b0db
...
...
@@ -47,7 +47,7 @@ encoder_sources = \
enc/dsp.c
if
CPU_x86_64
enc_
arch_dir
=
enc/x86_64
arch_dir
=
enc/x86_64
encoder_arch_sources
=
\
$(
arch_dir
)
/dct_decode_mmx.c
\
$(
arch_dir
)
/dsp_mmx.c
\
...
...
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