|
From: | Parul Chahar |
Subject: | Re: Changes done in binutils revision |
Date: | Wed, 11 Oct 2017 18:24:01 +0530 |
Hi Parul,
> Can someone help me, how can I check what all changes are done from 2.26 to 2.27.
> I do not know how to use git.
> I want to know what all changes are done for x86-64.
I am not a git expert either, but this worked for me (when run at the top
level of my cloned binutils repository):
git diff origin/binutils-2_26-branch..origin/binutils-2_27-branch
This did produce lots of output however (~34 megabytes!) so you may want to restrict
it to just those files you are interested in. For example:
git diff origin/binutils-2_26-branch..origin/binutils-2_27-branch -- bfd/elf32-i386.c bfd/elf64-x86-64.c
will show you just the changes to the elf32-i386.c and elf64-x86-64.c files.
Cheers
Nick
[Prev in Thread] | Current Thread | [Next in Thread] |