Displaying 2 results from an estimated 2 matches for "armfrag".
2012 Jun 14
1
Compilation problem with theorarm
...I followed instructions posted earlier on this list (http://permalink.gmane.org/gmane.comp.multimedia.ogg.theora.devel/3066) but still got messages about undefined symbol: oc_frag_recon_inter2_arm. I have fixed Makefile.am by adding
arm/ARMbitwise2.s \
arm/ARMdecode.s \
arm/ARMfilter.s \
arm/ARMfrag.s \
arm/ARMidct.s \
arm/ARMint.h \
arm/ARMoffsets.s \
arm/ARMoptions.s \
arm/ARMpp.s \
arm/ARMstate.c
to EXTRA_DIST and
decoder_arm_sources = \
arm/ARMbitwise2.s \
arm/ARMdecode.s \
arm/ARMfilter.s \
arm/ARMfrag.s \
arm/ARMidct.s \
arm/ARMpp.s \
arm/ARMstate.c
but it didn't help....
2010 Jul 24
2
theorarm build
...ompiler for ARM on an x86 Linux PC. After
running configure for arm-linux-gcc, I had to make the following mods
manually.
(1) The assembler .s files in ./lib/arm needed to be converted to gcc-
compatible format with arm2gcc.pl script.
(2) When turning off ARMV6 and ARM_HAS_NEON switches, the ARMfrag.s
files had a misplaced .endif directive that needed to be relocated.
(3) The CCASFLAGS options needed to be set to "-Xassembler -Iarm/" to
locate dependent .s files for assembly.
(4) The ARMstate.c file had a couple mismatched function parameter
types which needed fixing.
(5) Wh...