You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@harmony.apache.org by Oliver Deakin <ol...@googlemail.com> on 2006/06/21 17:09:43 UTC

[drlvm] Help building on Windows!

Hi all,
I'm trying to build drlvm, and with a small amount of effort Ive got its 
prereqs and
got it to start building, which is great. However, I hit a snag which 
stops the build
from completing (8 mins in, sigh):

build.native.init:
     [echo] ## Building native of 'vm.vmi'

build.native.c:
       [cc] 0 total files to be compiled.

build.native.cpp:
       [cc] 2 total files to be compiled.
       [cc] j9vmls.cpp
       [cc] C:\Program 
Files\eclipse.3.2.RC1a\workspace\drlvm\trunk\vm\vmi\src\j9
vmls.cpp(20) : fatal error C1083: Cannot open include file: 'hyvmls.h': 
No such
file or directory
       [cc] vmi.cpp
       [cc] C:\Program 
Files\eclipse.3.2.RC1a\workspace\drlvm\trunk\vm\vmi\src\vm
i.cpp(25) : fatal error C1083: Cannot open include file: 'zipsup.h': No 
such fil
e or directory
       [cc] Generating Code...

BUILD FAILED
C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build.xml:373: 
The
following error occurred while executing this line:
C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build.xml:380: 
The
following error occurred while executing this line:
C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build_component.xml
:72: The following error occurred while executing this line:
C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\win_ia32_msvc_release\se
mis\build\targets\build.native.xml:75: cl failed with return code 2

Total time: 7 minutes 50 seconds


It looks like the build cannot find the classlib header files it needs. 
Unfortunately
the error messages are unhelpful in that they don't tell me anything 
about the
include paths used. I have set the CLASSLIB_HOME variable in
make/win.properties to point to a prebuilt classlib/trunk checkout. Is 
there
something else I need to set?

Thanks,
Oliver

-- 
Oliver Deakin
IBM United Kingdom Limited


---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Alexey Petrenko <al...@gmail.com>.
Andrey, that was helpful suggestion. Thanks!

The final solution:
1. Unset CPPTASKS_HOME environment variable
2. Remove trunk/build/pre-copied and trunk/build/make/tmp directories
3. Run build update
4. Run build

SY, Alexey

2006/6/23, Andrey Chernyshev <a....@gmail.com>:
> C:\Work\Harmony\drlvm\trunk\build\win_ia32_msvc_release\semis\build\targets\buil
> > d.native.xml:75: Command line is over maximum length without specifying source f
> > ile
>
> This is most likely your build didn't picked up the right version of
> cpptasks for some reason.
> DRLVM build has workaround for a bug in cpptask's cc task implementation.
> It generates the patched version of cc task on the fly and stores it here:
> trunk/build/make/tmp/cpptasks/patched.src/src/net/sf/antcontrib/cpptasks/devstudio/DevStudioCCompiler.java
> (patched version should contain the line: int
> getMaximumCommandLength() { return 65535;}
>
> If you are using your own cpptasks package in your Ant installation,
> it's better to remove it for now.
> Perhaps this problem is already fixed in the ant-contrib beta4 and we
> no longer need this ugly patching, but I didn't check yet.
>
> Thanks,
> Andrey.
>
>
> On 6/23/06, Alexey Petrenko <al...@gmail.com> wrote:
> > I've just faced another issue with building on Windows...
> >
> > I got the following error message:
> >
> > build.native.init:
> >     [echo] ## Building native of 'vm.vmcore'
> >
> > build.native.c:
> >       [cc] 0 total files to be compiled.
> >
> > build.native.cpp:
> >       [cc] 120 total files to be compiled.
> >
> > BUILD FAILED
> > C:\Work\Harmony\drlvm\trunk\build\make\build.xml:373: The following error occurr
> > ed while executing this line:
> > C:\Work\Harmony\drlvm\trunk\build\make\build.xml:380: The following error occurr
> > ed while executing this line:
> > C:\Work\Harmony\drlvm\trunk\build\make\build_component.xml:72: The following err
> > or occurred while executing this line:
> > C:\Work\Harmony\drlvm\trunk\build\win_ia32_msvc_release\semis\build\targets\buil
> > d.native.xml:75: Command line is over maximum length without specifying source f
> > ile
> >
> > Any thought how to avoid it?
> >
> > Thanks in advance.
> >
> > SY, Alexey
> >
> > --
> > Alexey A. Petrenko
> > Intel Middleware Products Division
> >
> > ---------------------------------------------------------------------
> > Terms of use : http://incubator.apache.org/harmony/mailing.html
> > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> > For additional commands, e-mail: harmony-dev-help@incubator.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> Terms of use : http://incubator.apache.org/harmony/mailing.html
> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
>
>


-- 
Alexey A. Petrenko
Intel Middleware Products Division

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Andrey Chernyshev <a....@gmail.com>.
C:\Work\Harmony\drlvm\trunk\build\win_ia32_msvc_release\semis\build\targets\buil
> d.native.xml:75: Command line is over maximum length without specifying source f
> ile

This is most likely your build didn't picked up the right version of
cpptasks for some reason.
DRLVM build has workaround for a bug in cpptask's cc task implementation.
It generates the patched version of cc task on the fly and stores it here:
trunk/build/make/tmp/cpptasks/patched.src/src/net/sf/antcontrib/cpptasks/devstudio/DevStudioCCompiler.java
(patched version should contain the line: int
getMaximumCommandLength() { return 65535;}

If you are using your own cpptasks package in your Ant installation,
it's better to remove it for now.
Perhaps this problem is already fixed in the ant-contrib beta4 and we
no longer need this ugly patching, but I didn't check yet.

Thanks,
Andrey.


On 6/23/06, Alexey Petrenko <al...@gmail.com> wrote:
> I've just faced another issue with building on Windows...
>
> I got the following error message:
>
> build.native.init:
>     [echo] ## Building native of 'vm.vmcore'
>
> build.native.c:
>       [cc] 0 total files to be compiled.
>
> build.native.cpp:
>       [cc] 120 total files to be compiled.
>
> BUILD FAILED
> C:\Work\Harmony\drlvm\trunk\build\make\build.xml:373: The following error occurr
> ed while executing this line:
> C:\Work\Harmony\drlvm\trunk\build\make\build.xml:380: The following error occurr
> ed while executing this line:
> C:\Work\Harmony\drlvm\trunk\build\make\build_component.xml:72: The following err
> or occurred while executing this line:
> C:\Work\Harmony\drlvm\trunk\build\win_ia32_msvc_release\semis\build\targets\buil
> d.native.xml:75: Command line is over maximum length without specifying source f
> ile
>
> Any thought how to avoid it?
>
> Thanks in advance.
>
> SY, Alexey
>
> --
> Alexey A. Petrenko
> Intel Middleware Products Division
>
> ---------------------------------------------------------------------
> Terms of use : http://incubator.apache.org/harmony/mailing.html
> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
>
>

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Nataly Naumova <na...@gmail.com>.
> C:\Work\Harmony\drlvm\trunk\build\make\build_component.xml:72: The following err
> or occurred while executing this line:
> C:\Work\Harmony\drlvm\trunk\build\win_ia32_msvc_release\semis\build\targets\buil
> d.native.xml:75: Command line is over maximum length without specifying source f
> ile
>
> Any thought how to avoid it?

Aleksey,

looks like you have not patched cpptask. Such error usually occures
when cpptask sources  can't be compiled for some reasons.
Try "build update" again. There should be a message like
"Patching CPPTASKS..." here.
-- 
Nataly Naumova,
Intel Middleware Products Division

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Alexey Petrenko <al...@gmail.com>.
Geir,

are you sure about ANT_OPTS="-verbose"? This "-verbose" will be passes to VM...

Anyway "ANT_OPTS=-verbose", "build -verbose" and "build -debug" does
not show any relevant info...
It's seems like this error was produced inside the cc task.

SY, Alexey

2006/6/23, Geir Magnusson Jr <ge...@pobox.com>:
> hilarious.
>
> Can you set ANT_OPTS="-verbose", pipe the resulting stream of garbage to
> a file, and see what the offending line is?  I have no such problems.
>
> geir
>
>
> Alexey Petrenko wrote:
> > I've just faced another issue with building on Windows...
> >
> > I got the following error message:
> >
> > build.native.init:
> >     [echo] ## Building native of 'vm.vmcore'
> >
> > build.native.c:
> >       [cc] 0 total files to be compiled.
> >
> > build.native.cpp:
> >       [cc] 120 total files to be compiled.
> >
> > BUILD FAILED
> > C:\Work\Harmony\drlvm\trunk\build\make\build.xml:373: The following
> > error occurr
> > ed while executing this line:
> > C:\Work\Harmony\drlvm\trunk\build\make\build.xml:380: The following
> > error occurr
> > ed while executing this line:
> > C:\Work\Harmony\drlvm\trunk\build\make\build_component.xml:72: The
> > following err
> > or occurred while executing this line:
> > C:\Work\Harmony\drlvm\trunk\build\win_ia32_msvc_release\semis\build\targets\buil
> >
> > d.native.xml:75: Command line is over maximum length without specifying
> > source f
> > ile
> >
> > Any thought how to avoid it?
> >
> > Thanks in advance.
> >
> > SY, Alexey
> >
>
> ---------------------------------------------------------------------
> Terms of use : http://incubator.apache.org/harmony/mailing.html
> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
>
>


-- 
Alexey A. Petrenko
Intel Middleware Products Division

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Geir Magnusson Jr <ge...@pobox.com>.
hilarious.

Can you set ANT_OPTS="-verbose", pipe the resulting stream of garbage to
a file, and see what the offending line is?  I have no such problems.

geir


Alexey Petrenko wrote:
> I've just faced another issue with building on Windows...
> 
> I got the following error message:
> 
> build.native.init:
>     [echo] ## Building native of 'vm.vmcore'
> 
> build.native.c:
>       [cc] 0 total files to be compiled.
> 
> build.native.cpp:
>       [cc] 120 total files to be compiled.
> 
> BUILD FAILED
> C:\Work\Harmony\drlvm\trunk\build\make\build.xml:373: The following
> error occurr
> ed while executing this line:
> C:\Work\Harmony\drlvm\trunk\build\make\build.xml:380: The following
> error occurr
> ed while executing this line:
> C:\Work\Harmony\drlvm\trunk\build\make\build_component.xml:72: The
> following err
> or occurred while executing this line:
> C:\Work\Harmony\drlvm\trunk\build\win_ia32_msvc_release\semis\build\targets\buil
> 
> d.native.xml:75: Command line is over maximum length without specifying
> source f
> ile
> 
> Any thought how to avoid it?
> 
> Thanks in advance.
> 
> SY, Alexey
> 

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Alexey Petrenko <al...@gmail.com>.
I've just faced another issue with building on Windows...

I got the following error message:

build.native.init:
     [echo] ## Building native of 'vm.vmcore'

build.native.c:
       [cc] 0 total files to be compiled.

build.native.cpp:
       [cc] 120 total files to be compiled.

BUILD FAILED
C:\Work\Harmony\drlvm\trunk\build\make\build.xml:373: The following error occurr
ed while executing this line:
C:\Work\Harmony\drlvm\trunk\build\make\build.xml:380: The following error occurr
ed while executing this line:
C:\Work\Harmony\drlvm\trunk\build\make\build_component.xml:72: The following err
or occurred while executing this line:
C:\Work\Harmony\drlvm\trunk\build\win_ia32_msvc_release\semis\build\targets\buil
d.native.xml:75: Command line is over maximum length without specifying source f
ile

Any thought how to avoid it?

Thanks in advance.

SY, Alexey

-- 
Alexey A. Petrenko
Intel Middleware Products Division

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Oliver Deakin <ol...@googlemail.com>.
Thanks for the tips Andrey and Gregory - I've got the build working now, but
those command line switches are useful to know.

Andrey Chernyshev wrote:
> On 6/21/06, Gregory Shimansky <gs...@gmail.com> wrote:
>> You can always take a look at what command lines build calls C 
>> compiler if you
>> call build.bat with -d switch (it is just passed to ant). I am not 
>> sure if it
>
> One more tip to see what Ant really executes for you is to run:
>
> build.sh  -verbose
>
>
>> is the case but could it be spaces in the path like Documents and 
>> Settings?
>>
>> On Wednesday 21 June 2006 19:09 Oliver Deakin wrote:
>> > Hi all,
>> > I'm trying to build drlvm, and with a small amount of effort Ive 
>> got its
>> > prereqs and
>> > got it to start building, which is great. However, I hit a snag which
>> > stops the build
>> > from completing (8 mins in, sigh):
>> >
>> > build.native.init:
>> >      [echo] ## Building native of 'vm.vmi'
>> >
>> > build.native.c:
>> >        [cc] 0 total files to be compiled.
>> >
>> > build.native.cpp:
>> >        [cc] 2 total files to be compiled.
>> >        [cc] j9vmls.cpp
>> >        [cc] C:\Program
>> > Files\eclipse.3.2.RC1a\workspace\drlvm\trunk\vm\vmi\src\j9
>> > vmls.cpp(20) : fatal error C1083: Cannot open include file: 
>> 'hyvmls.h':
>> > No such
>> > file or directory
>> >        [cc] vmi.cpp
>> >        [cc] C:\Program
>> > Files\eclipse.3.2.RC1a\workspace\drlvm\trunk\vm\vmi\src\vm
>> > i.cpp(25) : fatal error C1083: Cannot open include file: 
>> 'zipsup.h': No
>> > such fil
>> > e or directory
>> >        [cc] Generating Code...
>> >
>> > BUILD FAILED
>> > 
>> C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build.xml:373 
>>
>> >: The
>> > following error occurred while executing this line:
>> > 
>> C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build.xml:380 
>>
>> >: The
>> > following error occurred while executing this line:
>> > 
>> C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build_compone 
>>
>> >nt.xml
>> >
>> > :72: The following error occurred while executing this line:
>> >
>> > 
>> C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\win_ia32_msvc_rele 
>>
>> >ase\se mis\build\targets\build.native.xml:75: cl failed with return 
>> code 2
>> >
>> > Total time: 7 minutes 50 seconds
>> >
>> >
>> > It looks like the build cannot find the classlib header files it 
>> needs.
>> > Unfortunately
>> > the error messages are unhelpful in that they don't tell me anything
>> > about the
>> > include paths used. I have set the CLASSLIB_HOME variable in
>> > make/win.properties to point to a prebuilt classlib/trunk checkout. Is
>> > there
>> > something else I need to set?
>> >
>> > Thanks,
>> > Oliver
>>
>> -- 
>> Gregory Shimansky, Intel Middleware Products Division
>>
>> ---------------------------------------------------------------------
>> Terms of use : http://incubator.apache.org/harmony/mailing.html
>> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
>> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
>>
>>
>
> ---------------------------------------------------------------------
> Terms of use : http://incubator.apache.org/harmony/mailing.html
> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
>
>

-- 
Oliver Deakin
IBM United Kingdom Limited


---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Andrey Chernyshev <a....@gmail.com>.
On 6/21/06, Gregory Shimansky <gs...@gmail.com> wrote:
> You can always take a look at what command lines build calls C compiler if you
> call build.bat with -d switch (it is just passed to ant). I am not sure if it

One more tip to see what Ant really executes for you is to run:

build.sh  -verbose


> is the case but could it be spaces in the path like Documents and Settings?
>
> On Wednesday 21 June 2006 19:09 Oliver Deakin wrote:
> > Hi all,
> > I'm trying to build drlvm, and with a small amount of effort Ive got its
> > prereqs and
> > got it to start building, which is great. However, I hit a snag which
> > stops the build
> > from completing (8 mins in, sigh):
> >
> > build.native.init:
> >      [echo] ## Building native of 'vm.vmi'
> >
> > build.native.c:
> >        [cc] 0 total files to be compiled.
> >
> > build.native.cpp:
> >        [cc] 2 total files to be compiled.
> >        [cc] j9vmls.cpp
> >        [cc] C:\Program
> > Files\eclipse.3.2.RC1a\workspace\drlvm\trunk\vm\vmi\src\j9
> > vmls.cpp(20) : fatal error C1083: Cannot open include file: 'hyvmls.h':
> > No such
> > file or directory
> >        [cc] vmi.cpp
> >        [cc] C:\Program
> > Files\eclipse.3.2.RC1a\workspace\drlvm\trunk\vm\vmi\src\vm
> > i.cpp(25) : fatal error C1083: Cannot open include file: 'zipsup.h': No
> > such fil
> > e or directory
> >        [cc] Generating Code...
> >
> > BUILD FAILED
> > C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build.xml:373
> >: The
> > following error occurred while executing this line:
> > C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build.xml:380
> >: The
> > following error occurred while executing this line:
> > C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build_compone
> >nt.xml
> >
> > :72: The following error occurred while executing this line:
> >
> > C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\win_ia32_msvc_rele
> >ase\se mis\build\targets\build.native.xml:75: cl failed with return code 2
> >
> > Total time: 7 minutes 50 seconds
> >
> >
> > It looks like the build cannot find the classlib header files it needs.
> > Unfortunately
> > the error messages are unhelpful in that they don't tell me anything
> > about the
> > include paths used. I have set the CLASSLIB_HOME variable in
> > make/win.properties to point to a prebuilt classlib/trunk checkout. Is
> > there
> > something else I need to set?
> >
> > Thanks,
> > Oliver
>
> --
> Gregory Shimansky, Intel Middleware Products Division
>
> ---------------------------------------------------------------------
> Terms of use : http://incubator.apache.org/harmony/mailing.html
> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
> For additional commands, e-mail: harmony-dev-help@incubator.apache.org
>
>

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org


Re: [drlvm] Help building on Windows!

Posted by Gregory Shimansky <gs...@gmail.com>.
You can always take a look at what command lines build calls C compiler if you 
call build.bat with -d switch (it is just passed to ant). I am not sure if it 
is the case but could it be spaces in the path like Documents and Settings?

On Wednesday 21 June 2006 19:09 Oliver Deakin wrote:
> Hi all,
> I'm trying to build drlvm, and with a small amount of effort Ive got its
> prereqs and
> got it to start building, which is great. However, I hit a snag which
> stops the build
> from completing (8 mins in, sigh):
>
> build.native.init:
>      [echo] ## Building native of 'vm.vmi'
>
> build.native.c:
>        [cc] 0 total files to be compiled.
>
> build.native.cpp:
>        [cc] 2 total files to be compiled.
>        [cc] j9vmls.cpp
>        [cc] C:\Program
> Files\eclipse.3.2.RC1a\workspace\drlvm\trunk\vm\vmi\src\j9
> vmls.cpp(20) : fatal error C1083: Cannot open include file: 'hyvmls.h':
> No such
> file or directory
>        [cc] vmi.cpp
>        [cc] C:\Program
> Files\eclipse.3.2.RC1a\workspace\drlvm\trunk\vm\vmi\src\vm
> i.cpp(25) : fatal error C1083: Cannot open include file: 'zipsup.h': No
> such fil
> e or directory
>        [cc] Generating Code...
>
> BUILD FAILED
> C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build.xml:373
>: The
> following error occurred while executing this line:
> C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build.xml:380
>: The
> following error occurred while executing this line:
> C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\make\build_compone
>nt.xml
>
> :72: The following error occurred while executing this line:
>
> C:\PROGRA~1\eclipse.3.2.RC1a\workspace\drlvm\trunk\build\win_ia32_msvc_rele
>ase\se mis\build\targets\build.native.xml:75: cl failed with return code 2
>
> Total time: 7 minutes 50 seconds
>
>
> It looks like the build cannot find the classlib header files it needs.
> Unfortunately
> the error messages are unhelpful in that they don't tell me anything
> about the
> include paths used. I have set the CLASSLIB_HOME variable in
> make/win.properties to point to a prebuilt classlib/trunk checkout. Is
> there
> something else I need to set?
>
> Thanks,
> Oliver

-- 
Gregory Shimansky, Intel Middleware Products Division

---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org
For additional commands, e-mail: harmony-dev-help@incubator.apache.org