[Qemu-devel] [PATCH v3] qemu: fix out of tree cross compile

2013-05-29 Thread Alexey Kardashevskiy
The symlink to "asm" platform linux headers is made in the build tree by the configure script but gcc is not told to look for them there. The patch fixes this. Signed-off-by: Alexey Kardashevskiy --- Reposting it as a top level patch. --- configure |2 +- 1 file changed, 1 insertion(+), 1

Re: [Qemu-devel] [PATCH v3] qemu: fix out of tree cross compile

2013-05-29 Thread Anthony Liguori
Alexey Kardashevskiy writes: > The symlink to "asm" platform linux headers is made in the build tree by > the configure script but gcc is not told to look for them there. > > The patch fixes this. > > Signed-off-by: Alexey Kardashevskiy > --- > > The previous patch did not remove the old line ad

Re: [Qemu-devel] [PATCH v3] qemu: fix out of tree cross compile

2013-05-28 Thread Paolo Bonzini
Il 28/05/2013 11:12, Andreas Färber ha scritto: > Am 28.05.2013 10:54, schrieb Paolo Bonzini: >> Il 28/05/2013 01:49, Alexey Kardashevskiy ha scritto: >>> The symlink to "asm" platform linux headers is made in the build tree by >>> the configure script but gcc is not told to look for them there. >>

Re: [Qemu-devel] [PATCH v3] qemu: fix out of tree cross compile

2013-05-28 Thread Andreas Färber
Am 28.05.2013 10:54, schrieb Paolo Bonzini: > Il 28/05/2013 01:49, Alexey Kardashevskiy ha scritto: >> The symlink to "asm" platform linux headers is made in the build tree by >> the configure script but gcc is not told to look for them there. >> >> The patch fixes this. >> >> Signed-off-by: Alexey

Re: [Qemu-devel] [PATCH v3] qemu: fix out of tree cross compile

2013-05-28 Thread Paolo Bonzini
Il 28/05/2013 01:49, Alexey Kardashevskiy ha scritto: > The symlink to "asm" platform linux headers is made in the build tree by > the configure script but gcc is not told to look for them there. > > The patch fixes this. > > Signed-off-by: Alexey Kardashevskiy > --- > > The previous patch did

[Qemu-devel] [PATCH v3] qemu: fix out of tree cross compile

2013-05-27 Thread Alexey Kardashevskiy
The symlink to "asm" platform linux headers is made in the build tree by the configure script but gcc is not told to look for them there. The patch fixes this. Signed-off-by: Alexey Kardashevskiy --- The previous patch did not remove the old line adding includes. Early morning, lack of focus :)