Re: [Qemu-devel] [PATCH] build: sort objects to remove duplicates for link

2011-09-02 Thread Anthony Liguori
On 09/02/2011 03:42 AM, Stefan Hajnoczi wrote: 2011/9/1 Michael Roth: On 09/01/2011 01:54 PM, Anthony Liguori wrote: On 08/25/2011 03:18 AM, Stefan Hajnoczi wrote: Avoid duplicate object files during the link. There are legitimate cases where a link command-line would include duplicate objec

Re: [Qemu-devel] [PATCH] build: sort objects to remove duplicates for link

2011-09-02 Thread Stefan Hajnoczi
2011/9/1 Michael Roth : > On 09/01/2011 01:54 PM, Anthony Liguori wrote: >> >> On 08/25/2011 03:18 AM, Stefan Hajnoczi wrote: >>> >>> Avoid duplicate object files during the link. There are legitimate >>> cases where a link command-line would include duplicate object files >>> because two independe

Re: [Qemu-devel] [PATCH] build: sort objects to remove duplicates for link

2011-09-01 Thread Michael Roth
On 09/01/2011 01:54 PM, Anthony Liguori wrote: On 08/25/2011 03:18 AM, Stefan Hajnoczi wrote: Avoid duplicate object files during the link. There are legitimate cases where a link command-line would include duplicate object files because two independent subsystems both depend on common infrastru

Re: [Qemu-devel] [PATCH] build: sort objects to remove duplicates for link

2011-09-01 Thread LluĂ­s Vilanova
Anthony Liguori writes: > On 08/25/2011 03:18 AM, Stefan Hajnoczi wrote: >> Avoid duplicate object files during the link. There are legitimate >> cases where a link command-line would include duplicate object files >> because two independent subsystems both depend on common infrastructure. >> >>

Re: [Qemu-devel] [PATCH] build: sort objects to remove duplicates for link

2011-09-01 Thread Anthony Liguori
On 08/25/2011 03:18 AM, Stefan Hajnoczi wrote: Avoid duplicate object files during the link. There are legitimate cases where a link command-line would include duplicate object files because two independent subsystems both depend on common infrastructure. Use GNU make's $(sort) function to remo

[Qemu-devel] [PATCH] build: sort objects to remove duplicates for link

2011-08-25 Thread Stefan Hajnoczi
Avoid duplicate object files during the link. There are legitimate cases where a link command-line would include duplicate object files because two independent subsystems both depend on common infrastructure. Use GNU make's $(sort) function to remove duplicate object files from the link command-l