Cannot compile library for Win32

This forum is about all development around libVLC.
athandavid
New Cone
New Cone
Posts: 8
Joined: 20 Jul 2014 13:30

Cannot compile library for Win32

Postby athandavid » 20 Jul 2014 14:28

Hi,

I would like to compile the VLC library for Windows.
I'm running Ubuntu 14.04 64 bits under Virtualbox.
I've installed every library depend so that configure will finish with success:

Code: Select all

$ ../extras/package/win32/configure.sh --host=i686-w64-mingw32
While running make I encounter the following issue:

Code: Select all

../../extras/package/win32/../../../src/text/url.c:502:19: fatal error: idna.h: No such file or directory # include <idna.h> ^ compilation terminated.
Did install all 'idna' available libraries from Ubuntu repository:

Code: Select all

libidn11 libidn11-dev libidn2-0 libidn2-0-dev libidn2-0-dbg libidn11-java libidna-punycode-perl
even though,

Code: Select all

libidn11 libidn11-dev
should have been sufficient.
Header is available:

Code: Select all

$ ls /usr/include/ | grep idn idn2.h idna.h idn-free.h idn-int.h
Also tried to modify CFLAGS, IDN_CFLAGS or naively add --idn-include (with /usr/include path) when configuring. None of these solved the issue.

Kindly requesting for help. If you need any other information please ask!

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

Re: Cannot compile library for Win32

Postby Rémi Denis-Courmont » 20 Jul 2014 17:36

Install 'mingw-w64-tools' and restart from scratch.
Rémi Denis-Courmont
https://www.remlab.net/
Private messages soliciting support will be systematically discarded

athandavid
New Cone
New Cone
Posts: 8
Joined: 20 Jul 2014 13:30

Re: Cannot compile library for Win32

Postby athandavid » 20 Jul 2014 18:20

Did follow tutorial from : https://wiki.videolan.org/Win32Compile/ . 'mingw-w64-tools' was installed with first batch of installs. Did start again scratch, but same error.

btsimonh
Blank Cone
Blank Cone
Posts: 17
Joined: 11 Jun 2010 22:03

Re: Cannot compile library for Win32

Postby btsimonh » 28 Jul 2014 00:07

yep, same issue here. only for me, the '../extras/package/win32/configure.sh --host=i686-w64-mingw32' did not work, but '../configure --host=i686-w64-mingw32' completed.
i'm on 32 bit mythbuntu.
Built for Linux fine, now testing build for windows.

../../src/text/url.c: At top level:
../../src/text/url.c:502:19: fatal error: idna.h: No such file or directory
# include <idna.h>
^
simon

btsimonh
Blank Cone
Blank Cone
Posts: 17
Joined: 11 Jun 2010 22:03

Re: Cannot compile library for Win32

Postby btsimonh » 28 Jul 2014 21:47

did this:

cp /usr/include/idna.h vlc/contrib/i686-w64-mingw32/include/
cp /usr/include/idn_int.h vlc/contrib/i686-w64-mingw32/include/

now it compiles, but stops at link:

i686-w64-mingw32-windres --include-dir ../../share --include-dir ../../extras/package/win32 -i libvlc_win32_rc.rc -o libvlc_win32_rc.o
CCLD libvlccore.la
/usr/bin/i686-w64-mingw32-ld: cannot find -lidn
/usr/bin/i686-w64-mingw32-ld: cannot find -ldbus-1
/usr/bin/i686-w64-mingw32-ld: cannot find -lrt
collect2: error: ld returned 1 exit status


I'm guessing that something is wrong with the pre-compiled win32 contribs at the moment, maybe?

Simon

athandavid
New Cone
New Cone
Posts: 8
Joined: 20 Jul 2014 13:30

Re: Cannot compile library for Win32

Postby athandavid » 29 Jul 2014 10:15

I did copy headers there too, before I tried :
Also tried to modify CFLAGS, IDN_CFLAGS or naively add --idn-include (with /usr/include path) when configuring. None of these solved the issue.
and had some similar issues to:
/usr/bin/i686-w64-mingw32-ld: cannot find -lidn
/usr/bin/i686-w64-mingw32-ld: cannot find -ldbus-1
/usr/bin/i686-w64-mingw32-ld: cannot find -lrt

Try again after you copy libidn.so, libdbus-1.so and librt.so from

Code: Select all

/usr/lib/
(if you have have them) in

Code: Select all

vlc/contrib/i686-w64-mingw32/lib
.

athandavid
New Cone
New Cone
Posts: 8
Joined: 20 Jul 2014 13:30

Re: Cannot compile library for Win32

Postby athandavid » 29 Jul 2014 10:15

I did copy headers there too, before I tried :
Also tried to modify CFLAGS, IDN_CFLAGS or naively add --idn-include (with /usr/include path) when configuring. None of these solved the issue.
and had some similar issues to:
/usr/bin/i686-w64-mingw32-ld: cannot find -lidn
/usr/bin/i686-w64-mingw32-ld: cannot find -ldbus-1
/usr/bin/i686-w64-mingw32-ld: cannot find -lrt

Try again after you copy libidn.so, libdbus-1.so and librt.so (if you have have them) from

Code: Select all

/usr/lib/
in

Code: Select all

vlc/contrib/i686-w64-mingw32/lib

btsimonh
Blank Cone
Blank Cone
Posts: 17
Joined: 11 Jun 2010 22:03

Re: Cannot compile library for Win32

Postby btsimonh » 29 Jul 2014 10:25

won't those be compiled for linux, not for win32?
I tried to build the contribs, and had a variety of issues.
the first was that nettle just would not download via ftp (fine in a browser in ftp and http, but not automated via curl). I fixed this by changing the reference to the http location.
The second was that Freetype did not build.
Then on a third try, it failed in a different way; failing to find Freetype2.
:(

I seem to remember contribs being the biggest issue last time I built VLC for win32.

athandavid
New Cone
New Cone
Posts: 8
Joined: 20 Jul 2014 13:30

Re: Cannot compile library for Win32

Postby athandavid » 29 Jul 2014 23:27

I gave up trying to compile VLC Library in Ubuntu. Using Debian Sid (unstable) did not encounter any problems presented above.
However, these errors look like some functions' implementation are missing:

Code: Select all

/home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `create': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:88: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:88: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:117: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:96: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:106: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:104: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `encode': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:234: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:234: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `trigger': /home/funman/vlc-git/contrib/win64/x265/source/common/threading.h:98: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `encode': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:240: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `x265::Encoder::Encoder()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:59: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:59: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:71: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `~TEncCfg': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCfg.h:169: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `x265_encoder_open_4': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:1519: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:1519: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `init': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:185: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `x265_encoder_open_4': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:1528: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `x265::Encoder::~Encoder()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:80: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:80: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `~TEncCfg': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCfg.h:169: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCfg.h:169: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `x265::Encoder::~Encoder()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:80: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:80: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/encoder.cpp:85: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj): In function `~TEncCfg': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCfg.h:169: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj):encoder.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj):encoder.cpp:(.xdata+0x20): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj):encoder.cpp:(.xdata+0xf8): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj):encoder.cpp:(.xdata+0x1a0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj):encoder.cpp:(.xdata+0x1e0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(encoder.cpp.obj):encoder.cpp:(.xdata+0x1f8): more undefined references to `__gxx_personality_sj0' follow /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `processRowEncoder': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:1048: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:1061: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `release': /home/funman/vlc-git/contrib/win64/x265/source/common/threading.h:69: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/common/threading.h:69: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `x265::FrameEncoder::FrameEncoder()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:45: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:45: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:61: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:51: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `init': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:100: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:100: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:178: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:107: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `destroy': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:70: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:70: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:96: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `~CTURow': /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.h:44: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `getStreamHeaders': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:182: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:182: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `~OutputNALUnit': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.h:53: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.h:53: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `compressFrame': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:349: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:349: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `~OutputNALUnit': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.h:53: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `compressFrame': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:421: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.cpp:422: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `~OutputNALUnit': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.h:53: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.h:53: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.h:53: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata+0x84): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata+0xa8): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata+0xd8): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata+0xfc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata+0x120): more undefined references to `__gxx_personality_sj0' follow /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `x265::FrameFilter::~FrameFilter()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.h:44: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.h:44: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.h:44: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata$_ZN4x26511FrameFilterD1Ev+0xc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `x265::FrameFilter::~FrameFilter()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.h:44: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.h:44: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.h:44: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `~FrameFilter': /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.h:44: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata$_ZN4x26511FrameFilterD0Ev+0xc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `x265::FrameEncoder::~FrameEncoder()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.h:59: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.h:59: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.h:59: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.h:59: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata$_ZN4x26512FrameEncoderD1Ev+0xc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `x265::FrameEncoder::~FrameEncoder()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.h:59: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.h:59: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.h:59: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `~FrameEncoder': /home/funman/vlc-git/contrib/win64/x265/source/encoder/frameencoder.h:59: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata$_ZN4x26512FrameEncoderD0Ev+0xc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj): In function `x265::CTURow::~CTURow()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.h:44: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.h:44: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.h:44: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.h:44: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(frameencoder.cpp.obj):frameencoder.cpp:(.xdata$_ZN4x2656CTURowD1Ev+0xc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `processRow': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1343: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1343: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `release': /home/funman/vlc-git/contrib/win64/x265/source/common/threading.h:69: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/common/threading.h:69: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/common/threading.h:69: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `init': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1091: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1091: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1126: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1096: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `x265::CostEstimate::~CostEstimate()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `x265::Lookahead::Lookahead(x265::TEncCfg*, x265::ThreadPool*)': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:59: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:59: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:68: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:60: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `x265::Lookahead::~Lookahead()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:71: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:71: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `~CostEstimate': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `x265::CostEstimate::~CostEstimate()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1088: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `~CostEstimate': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `getEstimatedPictureCost': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:114: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:114: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:163: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:171: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj): In function `~CostEstimate': /home/funman/vlc-git/contrib/win64/x265/source/encoder/slicetype.cpp:1080: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj):slicetype.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj):slicetype.cpp:(.xdata+0x2a4): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj):slicetype.cpp:(.xdata+0x2bc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj):slicetype.cpp:(.xdata+0x304): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj):slicetype.cpp:(.xdata+0x320): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(slicetype.cpp.obj):slicetype.cpp:(.xdata+0x338): more undefined references to `__gxx_personality_sj0' follow /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPic.cpp.obj): In function `create': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPic.cpp:78: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPic.cpp:95: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPic.cpp:79: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPic.cpp:85: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPic.cpp:82: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPic.cpp.obj):TComPic.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPic.cpp.obj):TComPic.cpp:(.xdata+0x30): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPicSym.cpp.obj): In function `create': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPicSym.cpp:67: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPicSym.cpp:67: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPicSym.cpp:95: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPicSym.cpp:88: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPicSym.cpp:91: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPicSym.cpp.obj):TComPicSym.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPicSym.cpp.obj):TComPicSym.cpp:(.xdata+0x14): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(bitcost.cpp.obj): In function `setQP': /home/funman/vlc-git/contrib/win64/x265/source/encoder/bitcost.cpp:35: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/bitcost.cpp:35: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/bitcost.cpp:58: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(bitcost.cpp.obj): In function `release': /home/funman/vlc-git/contrib/win64/x265/source/common/threading.h:69: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(bitcost.cpp.obj):bitcost.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(bitcost.cpp.obj):bitcost.cpp:(.xdata+0x14): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj): In function `x265::TComSPS::~TComSPS()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:613: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:613: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj): In function `~TComRPSList': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:906: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:906: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj): In function `x265::TComSPS::~TComSPS()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:613: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:613: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:617: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj): In function `~TComRPSList': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:906: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj): In function `x265::TComSPS::TComSPS()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:561: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:561: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:610: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj): In function `~TComRPSList': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:906: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj): In function `x265::TComPPS::TComPPS()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:734: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:734: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:759: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComSlice.cpp:759: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj):TComSlice.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj):TComSlice.cpp:(.xdata+0x7c): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj):TComSlice.cpp:(.xdata+0x94): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj):TComSlice.cpp:(.xdata+0x120): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComSlice.cpp.obj):TComSlice.cpp:(.xdata+0x150): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj):/home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:270: more undefined references to `__gxx_personality_sj0' follow /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj): In function `x265::ThreadPoolImpl::~ThreadPoolImpl()': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:270: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj): In function `~ThreadPool': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.h:83: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.h:83: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj): In function `x265::ThreadPoolImpl::~ThreadPoolImpl()': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:270: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:270: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:282: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj): In function `~ThreadPool': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.h:83: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj): In function `x265::ThreadPoolImpl::ThreadPoolImpl(int)': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:206: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:206: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:230: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj): In function `~ThreadPool': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.h:83: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj): In function `allocThreadPool': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:181: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:181: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:183: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.cpp:185: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj):threadpool.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj):threadpool.cpp:(.xdata+0x1c): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj):threadpool.cpp:(.xdata+0x50): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj):threadpool.cpp:(.xdata+0x78): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(threadpool.cpp.obj):threadpool.cpp:(.xdata+0x90): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(wavefront.cpp.obj):/home/funman/vlc-git/contrib/win64/x265/source/common/wavefront.cpp:55: more undefined references to `__gxx_personality_sj0' follow /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(wavefront.cpp.obj): In function `x265::WaveFront::~WaveFront()': /home/funman/vlc-git/contrib/win64/x265/source/common/wavefront.cpp:55: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(wavefront.cpp.obj): In function `~JobProvider': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.h:51: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.h:51: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(wavefront.cpp.obj): In function `x265::WaveFront::~WaveFront()': /home/funman/vlc-git/contrib/win64/x265/source/common/wavefront.cpp:55: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/common/wavefront.cpp:55: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/common/wavefront.cpp:59: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(wavefront.cpp.obj): In function `~JobProvider': /home/funman/vlc-git/contrib/win64/x265/source/common/threadpool.h:51: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(wavefront.cpp.obj):wavefront.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(wavefront.cpp.obj):wavefront.cpp:(.xdata+0xc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(wavefront.cpp.obj):wavefront.cpp:(.xdata+0x34): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSearch.cpp.obj): In function `init': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:116: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:116: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:189: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:163: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSearch.cpp.obj): In function `x265::TEncSearch::TEncSearch()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:54: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:54: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:77: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:54: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSearch.cpp.obj): In function `x265::TEncSearch::~TEncSearch()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:81: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:81: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:81: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSearch.cpp:81: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSearch.cpp.obj):TEncSearch.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSearch.cpp.obj):TEncSearch.cpp:(.xdata+0x10): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSearch.cpp.obj):TEncSearch.cpp:(.xdata+0x3cc): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSearch.cpp.obj):TEncSearch.cpp:(.xdata+0x3e8): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncCu.cpp.obj): In function `create': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:75: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:75: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:172: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:114: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:117: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:120: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:123: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:126: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncCu.cpp.obj):/home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.cpp:129: more undefined references to `_Unwind_SjLj_Resume' follow /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncCu.cpp.obj):TEncCu.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncCu.cpp.obj):TEncCu.cpp:(.xdata+0x18): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(cturow.cpp.obj): In function `create': /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.cpp:33: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.cpp:33: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(cturow.cpp.obj): In function `setEntropyCoder': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncCu.h:148: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(cturow.cpp.obj): In function `create': /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.cpp:48: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/encoder/cturow.cpp:49: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(cturow.cpp.obj):cturow.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(cturow.cpp.obj):cturow.cpp:(.xdata+0x10): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(framefilter.cpp.obj): In function `x265::FrameFilter::FrameFilter()': /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.cpp:38: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.cpp:38: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.cpp:42: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/encoder/framefilter.cpp:42: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(framefilter.cpp.obj):framefilter.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(framefilter.cpp.obj):framefilter.cpp:(.xdata+0xa0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSampleAdaptiveOffset.cpp.obj): In function `createEncBuffer': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.cpp:459: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.cpp:459: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.cpp:503: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.cpp:509: undefined reference to `_Unwind_SjLj_Resume' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/TEncSampleAdaptiveOffset.cpp:510: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSampleAdaptiveOffset.cpp.obj):TEncSampleAdaptiveOffset.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TEncSampleAdaptiveOffset.cpp.obj):TEncSampleAdaptiveOffset.cpp:(.xdata+0xa4): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj): In function `x265::TComOutputBitstream::~TComOutputBitstream()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.cpp:60: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.cpp:60: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj): In function `~TComBitIf': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.h:70: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.h:70: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj): In function `x265::TComOutputBitstream::~TComOutputBitstream()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.cpp:60: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.cpp:60: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.cpp:63: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj): In function `~TComBitIf': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.h:70: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj): In function `x265::TComOutputBitstream::TComOutputBitstream()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.cpp:54: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.cpp:54: undefined reference to `_Unwind_SjLj_Register' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj): In function `clear': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.cpp:84: undefined reference to `_Unwind_SjLj_Unregister' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj): In function `~TComBitIf': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComBitStream.h:70: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj):TComBitStream.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj):TComBitStream.cpp:(.xdata+0x10): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj):TComBitStream.cpp:(.xdata+0x28): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComBitStream.cpp.obj):TComBitStream.cpp:(.xdata+0x6c): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(NALwrite.cpp.obj): In function `write': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.cpp:52: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.cpp:52: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.cpp:128: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibEncoder/NALwrite.cpp:128: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(NALwrite.cpp.obj):NALwrite.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(NALwrite.cpp.obj):NALwrite.cpp:(.xdata+0x14): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPrediction.cpp.obj): In function `x265::TComPrediction::TComPrediction()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPrediction.cpp:60: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPrediction.cpp:60: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPrediction.cpp:64: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPrediction.cpp:64: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPrediction.cpp.obj): In function `x265::TComPrediction::~TComPrediction()': /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPrediction.cpp:67: undefined reference to `__gxx_personality_sj0' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPrediction.cpp:67: undefined reference to `_Unwind_SjLj_Register' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPrediction.cpp:88: undefined reference to `_Unwind_SjLj_Unregister' /home/funman/vlc-git/contrib/win64/x265/source/Lib/TLibCommon/TComPrediction.cpp:88: undefined reference to `_Unwind_SjLj_Resume' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPrediction.cpp.obj):TComPrediction.cpp:(.data+0x0): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPrediction.cpp.obj):TComPrediction.cpp:(.xdata+0x10): undefined reference to `__gxx_personality_sj0' /home/david/Downloads/vlc/contrib/x86_64-w64-mingw32/lib/libx265.a(TComPrediction.cpp.obj):TComPrediction.cpp:(.xdata+0x150): undefined reference to `__gxx_personality_sj0' collect2: error: ld returned 1 exit status Makefile:6970: recipe for target 'libx265_plugin.la' failed make[4]: *** [libx265_plugin.la] Error 1 make[4]: Leaving directory '/home/david/Downloads/vlc/win32/modules' Makefile:9722: recipe for target 'all-recursive' failed make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory '/home/david/Downloads/vlc/win32/modules' Makefile:4544: recipe for target 'all' failed make[2]: *** [all] Error 2 make[2]: Leaving directory '/home/david/Downloads/vlc/win32/modules' Makefile:1939: recipe for target 'all-recursive' failed make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory '/home/david/Downloads/vlc/win32' Makefile:1823: recipe for target 'all' failed make: *** [all] Error 2
Any suggestion?


Return to “Development around libVLC”

Who is online

Users browsing this forum: No registered users and 26 guests