problem in compiling vlc 0.9.8a

This forum is about all development around libVLC.
ahmad_aljallad
Blank Cone
Blank Cone
Posts: 56
Joined: 04 Nov 2008 13:32

problem in compiling vlc 0.9.8a

Postby ahmad_aljallad » 01 Feb 2009 10:18

Dear all
Am compiling the new version of VLC 0.9.8a but am facing this problem
when I compiling using cygwin

.o | | /usr/bin/sed -e '/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/' | /usr/bin/s
ed -e '/^[AITW][ ]/s/.*[ ]//' | sort | uniq > .libs/libvlccore.exp'
make[4]: *** [libvlccore.la] Error 1
make[4]: Leaving directory `/cygdrive/c/vlc-0.9.8a/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/cygdrive/c/vlc-0.9.8a/src'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/cygdrive/c/vlc-0.9.8a/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/cygdrive/c/vlc-0.9.8a'
make: *** [all] Error 2


They are talked about this problem before in the forum but in French
I don't speck any French plz help and thanks

Rémi Denis-Courmont
Developer
Developer
Posts: 15231
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: problem in compiling vlc 0.9.8a

Postby Rémi Denis-Courmont » 01 Feb 2009 12:16

If you did not see the warnings: Cygwin sucks.
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded

Arite
Big Cone-huna
Big Cone-huna
Posts: 2478
Joined: 26 Jun 2007 20:40
VLC version: 3.0.20
Operating System: Debian Testing|Win10

Re: problem in compiling vlc 0.9.8a

Postby Arite » 01 Feb 2009 13:02

In case you didn't know of the Wiki article:
http://wiki.videolan.org/Win32CompileCygwinNew

Try compiling with MinGW otherwise:
http://wiki.videolan.org/Win32CompileMSYS

Arite.
Don't use PMs for support questions.

ahmad_aljallad
Blank Cone
Blank Cone
Posts: 56
Joined: 04 Nov 2008 13:32

Re: problem in compiling vlc 0.9.8a

Postby ahmad_aljallad » 01 Feb 2009 14:04

thanks for your help this problem has been fixed
I change the line 144 in

Code: Select all

# Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1\\2\\3 \\3/p'"
But am having another problem when i compile now the cygwin come to some point and do nothing
i noticed that i have to enter something i enter exit and then it continue like when you press ignore
If you won't to install something and the installer found corrupted file why this error happened and how
i can solve this problem .
any how i will try to use /MinGW but plz help i don't have time to start from the 0 .
Thanks

Arite
Big Cone-huna
Big Cone-huna
Posts: 2478
Joined: 26 Jun 2007 20:40
VLC version: 3.0.20
Operating System: Debian Testing|Win10

Re: problem in compiling vlc 0.9.8a

Postby Arite » 01 Feb 2009 14:09

But am having another problem when i compile now the cygwin come to some point and do nothing
Messages?
any how i will try to use /MinGW but plz help i don't have time to start from the 0 .
Well try MinGW out - compiling with that is better since it creates native binaries and not psuedo-native ones with cygwin1.dll.

Arite.
Don't use PMs for support questions.

ahmad_aljallad
Blank Cone
Blank Cone
Posts: 56
Joined: 04 Nov 2008 13:32

Re: problem in compiling vlc 0.9.8a

Postby ahmad_aljallad » 02 Feb 2009 07:49

Dear all
Sorry for bother but just one last question all problem with cygwin solved
But when make package-win32-base on cygwin i get this error

Code: Select all

cp ./projects/activex/.libs/axvlc.dll ./vlc-0.9.8a/activex/ cp ./projects/activex/axvlc.dll.manifest ./vlc-0.9.8a/activex/ cp: cannot stat `./projects/activex/axvlc.dll.manifest': No such file or directo ry make: *** [package-win-common] Error 1
Plz help with this error because just one step left how I can solve it
And thanks

Jean-Baptiste Kempf
Site Administrator
Site Administrator
Posts: 37523
Joined: 22 Jul 2005 15:29
VLC version: 4.0.0-git
Operating System: Linux, Windows, Mac
Location: Cone, France
Contact:

Re: problem in compiling vlc 0.9.8a

Postby Jean-Baptiste Kempf » 02 Feb 2009 10:15

Edit your Makefile.am to fix this, or disable activex for the time being.
Jean-Baptiste Kempf
http://www.jbkempf.com/ - http://www.jbkempf.com/blog/category/Videolan
VLC media player developer, VideoLAN President and Sites administrator
If you want an answer to your question, just be specific and precise. Don't use Private Messages.

ahmad_aljallad
Blank Cone
Blank Cone
Posts: 56
Joined: 04 Nov 2008 13:32

Re: problem in compiling vlc 0.9.8a

Postby ahmad_aljallad » 02 Feb 2009 12:12

i found this if statment in makefile

Code: Select all

# ActiveX plugin if BUILD_ACTIVEX mkdir -p "$(win32_destdir)/activex" cp $(srcdir)/projects/activex/README.TXT $(win32_destdir)/activex/ cp $(srcdir)/projects/activex/test.html $(win32_destdir)/activex/ unix2dos $(win32_destdir)/activex/* cp $(top_builddir)/projects/activex/.libs/axvlc$(LIBEXT) $(win32_destdir)/activex/ cp $(top_srcdir)/projects/activex/axvlc.dll.manifest $(win32_destdir)/activex/ endif


do i have to delete it

bryanair
Blank Cone
Blank Cone
Posts: 13
Joined: 03 Feb 2009 13:37

Re: problem in compiling vlc 0.9.8a

Postby bryanair » 04 Feb 2009 13:34

Your pipe fix is close, but pasted badly. The [ ] should be tab character in there. Since tab turns into spaces when pasting you could substitute [[:blank:]], like this:

# Take the output of nm and produce a listing of raw symbols and C names
global_symbol_pipe="sed -n -e 's/^.*[[:blank:]]\([ABCDGIRSTW][ABCDGIRSTW]*\)[[:blank:]][[:blank:]]*_\([_A-Za-z][_A-Za-z0-9]*\)$/\1 _\2 \2/p'"

bryanair
thanks for your help this problem has been fixed
I change the line 144 in

Code: Select all

# Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1\\2\\3 \\3/p'"
But am having another problem when i compile now the cygwin come to some point and do nothing
i noticed that i have to enter something i enter exit and then it continue like when you press ignore
If you won't to install something and the installer found corrupted file why this error happened and how
i can solve this problem .
any how i will try to use /MinGW but plz help i don't have time to start from the 0 .
Thanks

ahmad_aljallad
Blank Cone
Blank Cone
Posts: 56
Joined: 04 Nov 2008 13:32

Re: problem in compiling vlc 0.9.8a

Postby ahmad_aljallad » 04 Feb 2009 15:32

the same nothing happend if i won't the compile run without error
i have to replace liptool for this with libtool from 0.9.5 already
compiled before what should i do

thanks

Rémi Denis-Courmont
Developer
Developer
Posts: 15231
Joined: 07 Jun 2004 16:01
VLC version: master
Operating System: Linux
Contact:

Re: problem in compiling vlc 0.9.8a

Postby Rémi Denis-Courmont » 04 Feb 2009 17:08

Cross compiling from Linux is the only reliable way to get rid of those stupid build problems.
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded


Return to “Development around libVLC”

Who is online

Users browsing this forum: No registered users and 7 guests