* Latest Xen src 64bit: cannot compile
@ 2006-05-04 19:19 Rick Gonzalez
2006-05-04 21:59 ` Keir Fraser
0 siblings, 1 reply; 3+ messages in thread
From: Rick Gonzalez @ 2006-05-04 19:19 UTC (permalink / raw)
To: Xen Developers
Anybody having problems compiling latest changeset?
This is what I'm seeing:
-o intercept.o
gcc -O2 -fomit-frame-pointer -DNDEBUG -m64 -Wall -Wstrict-prototypes
-nostdinc -fno-builtin -fno-common -fno-strict-aliasing -iwithprefix
include -Werror -Wno-pointer-arith -pipe
-I/usr/xen/xen-unstable.hg/xen/include
-I/usr/xen/xen-unstable.hg/xen/include/asm-x86/mach-generic
-I/usr/xen/xen-unstable.hg/xen/include/asm-x86/mach-default -msoft-float
-mno-red-zone -fpic -fno-reorder-blocks -fno-asynchronous-unwind-tables
-g -D__XEN__ -c io.c -o io.o
make[6]: *** No rule to make target `instrlen.o', needed by
`built_in.o'. Stop.
make[6]: Leaving directory `/usr/xen/xen-unstable.hg/xen/arch/x86/hvm'
make[5]: *** [hvm/built_in.o] Error 2
make[5]: Leaving directory `/usr/xen/xen-unstable.hg/xen/arch/x86'
make[4]: *** [/usr/xen/xen-unstable.hg/xen/arch/x86/built_in.o] Error 2
make[4]: Leaving directory `/usr/xen/xen-unstable.hg/xen/arch/x86'
make[3]: *** [/usr/xen/xen-unstable.hg/xen/xen] Error 2
make[3]: Leaving directory `/usr/xen/xen-unstable.hg/xen'
make[2]: *** [install] Error 2
make[2]: Leaving directory `/usr/xen/xen-unstable.hg/xen'
make[1]: *** [install-xen] Error 2
make[1]: Leaving directory `/usr/xen/xen-unstable.hg'
make: *** [world] Error 2
regards,
------------------------
Rick Gonzalez
Linux Technology Center
IBM Corporation
Phone#: 512-838-0623
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: Latest Xen src 64bit: cannot compile
2006-05-04 19:19 Latest Xen src 64bit: cannot compile Rick Gonzalez
@ 2006-05-04 21:59 ` Keir Fraser
2006-05-05 4:59 ` Rick Gonzalez
0 siblings, 1 reply; 3+ messages in thread
From: Keir Fraser @ 2006-05-04 21:59 UTC (permalink / raw)
To: Rick Gonzalez; +Cc: Xen Developers
On 4 May 2006, at 20:19, Rick Gonzalez wrote:
> Anybody having problems compiling latest changeset?
>
> This is what I'm seeing:
>
>
> -o intercept.o
> gcc -O2 -fomit-frame-pointer -DNDEBUG -m64 -Wall -Wstrict-prototypes
> -nostdinc -fno-builtin -fno-common -fno-strict-aliasing -iwithprefix
> include -Werror -Wno-pointer-arith -pipe
> -I/usr/xen/xen-unstable.hg/xen/include
> -I/usr/xen/xen-unstable.hg/xen/include/asm-x86/mach-generic
> -I/usr/xen/xen-unstable.hg/xen/include/asm-x86/mach-default
> -msoft-float -mno-red-zone -fpic -fno-reorder-blocks
> -fno-asynchronous-unwind-tables -g -D__XEN__ -c io.c -o io.o
> make[6]: *** No rule to make target `instrlen.o', needed by
> `built_in.o'. Stop.
Does your xen/arch/x86/hvm/Makefile contain a reference to instrlen.o?
That would be a problem, and no such reference is present in the main
repositories (instrlen.c lives in xen/arch/x86/hvm/svm, and it's that
directory's Makefile that references it).
Maybe you need to clone a fresh repository.
-- Keir
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Latest Xen src 64bit: cannot compile
2006-05-04 21:59 ` Keir Fraser
@ 2006-05-05 4:59 ` Rick Gonzalez
0 siblings, 0 replies; 3+ messages in thread
From: Rick Gonzalez @ 2006-05-05 4:59 UTC (permalink / raw)
To: Keir Fraser; +Cc: Xen Developers
Keir Fraser wrote:
>
> On 4 May 2006, at 20:19, Rick Gonzalez wrote:
>
>> Anybody having problems compiling latest changeset?
>>
>> This is what I'm seeing:
>>
>>
>> -o intercept.o
>> gcc -O2 -fomit-frame-pointer -DNDEBUG -m64 -Wall -Wstrict-prototypes
>> -nostdinc -fno-builtin -fno-common -fno-strict-aliasing -iwithprefix
>> include -Werror -Wno-pointer-arith -pipe
>> -I/usr/xen/xen-unstable.hg/xen/include
>> -I/usr/xen/xen-unstable.hg/xen/include/asm-x86/mach-generic
>> -I/usr/xen/xen-unstable.hg/xen/include/asm-x86/mach-default
>> -msoft-float -mno-red-zone -fpic -fno-reorder-blocks
>> -fno-asynchronous-unwind-tables -g -D__XEN__ -c io.c -o io.o
>> make[6]: *** No rule to make target `instrlen.o', needed by
>> `built_in.o'. Stop.
>
> Does your xen/arch/x86/hvm/Makefile contain a reference to instrlen.o?
> That would be a problem, and no such reference is present in the main
> repositories (instrlen.c lives in xen/arch/x86/hvm/svm, and it's that
> directory's Makefile that references it).
>
> Maybe you need to clone a fresh repository.
Keir,
Thanks for the info and advise. :) I just got a fresh repository
and it is working now. I'm not sure how it actually got bad.
Anyway thanks,
>
> -- Keir
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-05-05 4:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-04 19:19 Latest Xen src 64bit: cannot compile Rick Gonzalez
2006-05-04 21:59 ` Keir Fraser
2006-05-05 4:59 ` Rick Gonzalez
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.