2008/1/10, Burkhard Plaum <[EMAIL PROTECTED]>: > Hi > > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA512 > > > > As subject says. > > yes Which version of nasm are you using: with nasm-0.98.39 [EMAIL PROTECTED] video]$ nasm -f elf64 reconmmx.s -o reconmmx.o nasm: fatal: unrecognised output format `elf64' - use -hf for a list
with nasm-2.00 [EMAIL PROTECTED] video]$ nasm -f elf64 reconmmx.s -o reconmmx.o reconmmx.s:37: error: instruction not supported in 64-bit mode ... (many lines) ... reconmmx.s:298: error: instruction not supported in 64-bit mode maybe it would be better to use yasm ? [EMAIL PROTECTED] video]$ yasm -f elf -m amd64 -o reconmmx.o reconmmx.s reconmmx.s:37: invalid size for operand 1 ... (many lines) ... reconmmx.s:298: invalid size for operand 1 The only difference betwen cinelerra and libmpeg3-1.7 is: [EMAIL PROTECTED] video]$ diff -u reconmmx.s ../../../libmpeg3-1.7/video/reconmmx.s |more --- reconmmx.s 2003-06-16 22:00:48.000000000 +0200 +++ ../../../libmpeg3-1.7/video/reconmmx.s 2008-01-12 20:28:55.000000000 +0 100 @@ -298,4 +298,6 @@ pop esi ret - +%ifidn __OUTPUT_FORMAT__,elf +section .note.GNU-stack noalloc noexec nowrite progbits +%endif Which make me think it would be valuable to use the system libmpeg3 when 1.7 is use. But this is another subject. Nicolas (kwizart ) > Burkhard > > > _______________________________________________ > Cinelerra mailing list > [email protected] > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra > _______________________________________________ Cinelerra mailing list [email protected] https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
