Re: [FFmpeg-user] Fatal error when compiling: ld terminated with signal 11

2018-05-17 Thread zerino
I see, thank you guys. I might now try again not using the system for
anything else during the process.


thanks a lot!



--
Sent from: http://www.ffmpeg-archive.org/
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Fatal error when compiling: ld terminated with signal 11

2018-05-17 Thread Nicolas George
cedric.dew...@telfort.nl (2018-05-17):
> On smaller systems (with 1GB or even 512MB of RAM), it sometimes
> happens the ram is just full. 
> LD is one of the most memory hungry steps of the compile.
> This can be seen in dmegs, then you might see messages like
> out-of-memory process killer.

The OOM killer uses signal 9, not 11.

Regards,

-- 
  Nicolas George


signature.asc
Description: Digital signature
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Fatal error when compiling: ld terminated with signal 11

2018-05-17 Thread cedric.dew...@telfort.nl

>Origineel Bericht
>Van : barsn...@gmx.net
>Datum : 17/05/2018 07:50
>Aan : ffmpeg-user@ffmpeg.org
>Onderwerp : Re: [FFmpeg-user] Fatal error when compiling: ld terminated with 
>signal 11
>
>On Wed, May 16, 2018 at 18:43:34 -0700, zerino wrote:
>> What do you mean by linker?
>
>The tool that crashed duing your compile is "ld", the linker (part of a
>"compile" toolchain). It's not provided by ffmpeg and just expected to
>work.
>
>> And what os it have to with heat?
>
>Such tool crashes *can* happen under circumstances like overheated
>system, bad memory, bad memory timing, and so on. Just to rule that
>out, Carl Eugen recommended to check that this is not the case.
>
>Moritz

On smaller systems (with 1GB or even 512MB of RAM), it sometimes happens the 
ram is just full. 
LD is one of the most memory hungry steps of the compile.
This can be seen in dmegs, then you might see messages like out-of-memory 
process killer.

In that case, you can extend the ram with a swapfile.

Hope this helps,
Cedric
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Fatal error when compiling: ld terminated with signal 11

2018-05-17 Thread Moritz Barsnick
On Wed, May 16, 2018 at 18:43:34 -0700, zerino wrote:
> What do you mean by linker?

The tool that crashed duing your compile is "ld", the linker (part of a
"compile" toolchain). It's not provided by ffmpeg and just expected to
work.

> And what os it have to with heat?

Such tool crashes *can* happen under circumstances like overheated
system, bad memory, bad memory timing, and so on. Just to rule that
out, Carl Eugen recommended to check that this is not the case.

Moritz
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Fatal error when compiling: ld terminated with signal 11

2018-05-16 Thread zerino
By default, I meant this git link  https://git.ffmpeg.org/ffmpeg.git


yup, they're meant to be, but since ffplay wasnt being installed, and
already had sdl-config packaged installed, I thought I ought to try to
"force
it"

What do you mean by linker?

And what os it have to with heat?



--
Sent from: http://www.ffmpeg-archive.org/
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Fatal error when compiling: ld terminated with signal 11

2018-05-16 Thread zerino
I don't know what the "default git link" is but on ffmpeg.org, in thedownload
section you can find a link to Zeranoe who providesWindows binaries that
contain "even" x264.I meant this git link  https://git.ffmpeg.org/ffmpeg.git
Both are enabled by default (ffplay is only available if sdl
isavailable).yup, they're meant to be, but since ffplay wasnt installed, and
already to have sdl-config packaged installed, I thought I oought to "force
it"> Everything went fine until compiling ffmpeg itself.>> here is the
error:> LD  ffmpeg_g> collect2: fatal error: ld terminated with signal
11 [Segmentation fault],This is a linker bug, it cannot be fixed within
FFmpeg.(If this is a thermal issue, try again after allowing yoursystem to
cool down.)What do you mean by linker?And what os it have to with heat?Carl
Eugen___ffmpeg-user mailing
listffmpeg-user@http://ffmpeg.org/mailman/listinfo/ffmpeg-userTo
unsubscribe, visit link above, or emailffmpeg-user-request@ with subject
"unsubscribe".



--
Sent from: http://www.ffmpeg-archive.org/
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] Fatal error when compiling: ld terminated with signal 11

2018-05-16 Thread Carl Eugen Hoyos
2018-05-17 2:07 GMT+02:00, zerino :
> Hello, I've been using ffmpeg for 3 years now, but I never had to compile
> it.
> This is quite new to me.
>
> I'm using Linux subsystem in a win10 machine.
>
> I was able to successfully compile it using the default git link on their
> website, but it lacked most libraries i needed (even x264), so I realized I
> should make a custom compile.

I don't know what the "default git link" is but on ffmpeg.org, in the
download section you can find a link to Zeranoe who provides
Windows binaries that contain "even" x264.

> Followed this guide:
> https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu#FFmpeg

> only adding
> --enable-ffplay \ and --enable-ffprobe \ to ensure their installation

Both are enabled by default (ffplay is only available if sdl is
available).

> Everything went fine until compiling ffmpeg itself.
>
> here is the error:

> LD  ffmpeg_g
> collect2: fatal error: ld terminated with signal 11 [Segmentation fault],

This is a linker bug, it cannot be fixed within FFmpeg.

(If this is a thermal issue, try again after allowing your
system to cool down.)

Carl Eugen
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".