[FFmpeg-devel] [PATCH] gitignore: ignore object file temporaries

Ganesh Ajjanagadde gajjanag at mit.edu
Sat Oct 10 15:39:58 CEST 2015


On Sat, Oct 10, 2015 at 9:10 AM, Ganesh Ajjanagadde <gajjanag at mit.edu> wrote:
> On Sat, Oct 10, 2015 at 7:40 AM, James Darnley <james.darnley at gmail.com> wrote:
>> On 2015-10-10 00:43, Ganesh Ajjanagadde wrote:
>>> During a build, a lot of *.o-hash files are created - had not noticed
>>> this as they are usually dumped in tmpfs on Linux. However, they
>>> sometimes are present during a long build in the project directory, making it
>>> annoying to commit while the project is being built.
>>>
>>> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde at gmail.com>
>>> ---
>>>  .gitignore | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/.gitignore b/.gitignore
>>> index 5cabe50..db6248e 100644
>>> --- a/.gitignore
>>> +++ b/.gitignore
>>> @@ -1,5 +1,5 @@
>>>  *.a
>>> -*.o
>>> +*.o*
>>>  *.d
>>>  *.def
>>>  *.dll
>>>
>>
>> What compiler does that?
>
> clang, -fsanitize=undefined on my Arch machine. I did not add it to
> the commit message as I am pretty sure there are other such
> configurations, and since it is trivial.

I have now created a slightly more specific gitignore pattern and
improved the commit message. Please see updated patch.

>
>>
>>
>>
>> _______________________________________________
>> ffmpeg-devel mailing list
>> ffmpeg-devel at ffmpeg.org
>> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>>


More information about the ffmpeg-devel mailing list