Mailing List Archive

Problems building 0.6 under mandrake 9
Sorry for the long post folks, just wondering if anyone has seen this one.
The system is a duron 1200, 512mb ram and mandrake 9 w/gcc 3.2.

gcc -c -pipe -Wall -W -O3 -fomit-frame-pointer -pipe -mcpu=pentiumpro
-march=i586 -ffast-math -fno-strength-reduce -Wno-missing-prototypes -O2
-fomit-frame-pointer -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_THREAD_SUPPORT
-DQT_PLUGIN -I../../libs/libNuppelVideo -I/usr/lib/qt3/include
-I/usr/lib/qt3/mkspecs/default -o postprocess.o postprocess.c
In file included from postprocess.c:456:
postprocess_template.c: In function `postProcess_MMX':
postprocess_template.c:1885: can't find a register in class `GENERAL_REGS'
while reloading `asm'
postprocess.c: In function `getPPModeByNameAndQuality':
postprocess.c:575: warning: missing initializer
postprocess.c:575: warning: (near initialization for `ppMode.maxDcDiff')
postprocess.c: In function `readNPPOpt':
postprocess.c:758: warning: unused parameter `conf'
postprocess.c: In function `readPPOpt':
postprocess.c:782: warning: unused parameter `conf'
postprocess.c: In function `revertPPOpt':
postprocess.c:801: warning: unused parameter `conf'
postprocess.c:801: warning: unused parameter `opt'
postprocess.c: In function `isHorizMinMaxOk':
postprocess.c:265: warning: unused parameter `stride'
postprocess_template.c: In function `isVertMinMaxOk_MMX':
postprocess_template.c:160: warning: unused parameter `QP'
postprocess_template.c: In function `isVertMinMaxOk_MMX2':
postprocess_template.c:160: warning: unused parameter `QP'
postprocess_template.c: In function `doVertLowPass_MMX2':
postprocess_template.c:217: warning: unused parameter `QP'
postprocess_template.c: In function `vertRK1Filter_MMX2':
postprocess_template.c:399: warning: unused parameter `QP'
postprocess_template.c: In function `vertX1Filter_MMX2':
postprocess_template.c:499: warning: unused parameter `QP'
postprocess_template.c: In function `doVertDefFilter_MMX2':
postprocess_template.c:656: warning: unused parameter `QP'
postprocess_template.c: In function `tempNoiseReducer_MMX2':
postprocess_template.c:2047: warning: unused parameter `maxNoise'
postprocess_template.c: In function `isVertMinMaxOk_3DNow':
postprocess_template.c:160: warning: unused parameter `QP'
postprocess_template.c: In function `doVertLowPass_3DNow':
postprocess_template.c:217: warning: unused parameter `QP'
postprocess_template.c: In function `vertRK1Filter_3DNow':
postprocess_template.c:399: warning: unused parameter `QP'
postprocess_template.c: In function `vertX1Filter_3DNow':
postprocess_template.c:499: warning: unused parameter `QP'
postprocess_template.c: In function `doVertDefFilter_3DNow':
postprocess_template.c:656: warning: unused parameter `QP'
postprocess_template.c: In function `tempNoiseReducer_3DNow':
postprocess_template.c:2047: warning: unused parameter `maxNoise'
make[2]: *** [postprocess.o] Error 1
make[2]: Leaving directory
`/home/rpage/Documents/mythtv-0.6/filters/postprocess'
make[1]: *** [sub-postprocess] Error 2
make[1]: Leaving directory `/home/rpage/Documents/mythtv-0.6/filters'
make: *** [sub-filters] Error 2
[rpage@straylight mythtv-0.6]$

Obviously I'm missing something, but I don't know what. I can usually sort out
missing deps and stuff by myself, but this on has me stumped.

Thanks in advance,

Randy
Re: Problems building 0.6 under mandrake 9 [ In reply to ]
On Sunday 13 October 2002 01:32 am, Randy Page wrote:
> Sorry for the long post folks, just wondering if anyone has seen this one.
> The system is a duron 1200, 512mb ram and mandrake 9 w/gcc 3.2.
<snip>
> Obviously I'm missing something, but I don't know what. I can usually sort
> out missing deps and stuff by myself, but this on has me stumped.

Just edit filters/filters.pro and remove the 'postprocess' from the end of the
SUBDIRS line, and re-make things from the top source dir. That filter's
unused at the moment, so not compiling it won't hurt anything.

Isaac
Re: Problems building 0.6 under mandrake 9 [ In reply to ]
On Saturday 12 October 2002 11:42 pm, Isaac Richards wrote:

> Just edit filters/filters.pro and remove the 'postprocess' from the end of
> the SUBDIRS line, and re-make things from the top source dir. That
> filter's unused at the moment, so not compiling it won't hurt anything.
>
Thanks Isaac.

Randy