You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@harmony.apache.org by "Richard Liang (JIRA)" <ji...@apache.org> on 2006/02/27 07:52:29 UTC

[jira] Created: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Cannot make libvmi.so and libhytext.so on linux
-----------------------------------------------

         Key: HARMONY-136
         URL: http://issues.apache.org/jira/browse/HARMONY-136
     Project: Harmony
        Type: Bug
  Components: Classlib  
    Reporter: Richard Liang


Hello,

When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.

in /native-src/linux.IA32/vmi/

====issue command: make 
====output:

cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
cc  -shared  -Wl,-Map=vmi.map \
-Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
 -L.  -L../lib -L.. -o ../libvmi.so \
vmi_copyright.o vmi.o -Xlinker --start-group \
: No such file or directory
make: *** [../libvmi.so] Error 1

====issue command: dos2unix makefile
====issue command: make
====output:
cc  -shared  -Wl,-Map=vmi.map \
-Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
 -L.  -L../lib -L.. -o ../libvmi.so \
vmi_copyright.o vmi.o -Xlinker --start-group \
-lhyzip \
-lhypool -Xlinker --end-group  -lc -lm -ldl



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


Re: [jira] Created: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by Richard Liang <ri...@gmail.com>.
Hello Mark,

I'm also confused about this problem.

My make version is: GNU Make version 3.79.1
And gcc version is: gcc (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-34).

Thanks a lot.

Richard Liang
China Software Development Lab, IBM



Mark Hindess wrote:
> What version of make?  I have no problem with either vmi (or text) at
> that revision this with "make --version" of "GNU Make 3.81beta4".
>
> I'd like to share more files between linux and windows and I suspect
> dos files are more likely to work correctly on both.  So I'd like to
> understand this problem a little better - though dos2unix
> linux.IA32/*/makefile is a reasonable quick fix for now.
>
> What is really confusing me  is why is it only the text and vmi
> makefiles?  The other makefiles are dos files too!
>
> -Mark.
>
> On 27/02/06, Richard Liang (JIRA) <ji...@apache.org> wrote:
>   
>> Cannot make libvmi.so and libhytext.so on linux
>> -----------------------------------------------
>>
>>          Key: HARMONY-136
>>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>>      Project: Harmony
>>         Type: Bug
>>   Components: Classlib
>>     Reporter: Richard Liang
>>
>>
>> Hello,
>>
>> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
>>
>> in /native-src/linux.IA32/vmi/
>>
>> ====issue command: make
>> ====output:
>>
>> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
>> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
>> cc  -shared  -Wl,-Map=vmi.map \
>> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>>  -L.  -L../lib -L.. -o ../libvmi.so \
>> vmi_copyright.o vmi.o -Xlinker --start-group \
>> : No such file or directory
>> make: *** [../libvmi.so] Error 1
>>
>> ====issue command: dos2unix makefile
>> ====issue command: make
>> ====output:
>> cc  -shared  -Wl,-Map=vmi.map \
>> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>>  -L.  -L../lib -L.. -o ../libvmi.so \
>> vmi_copyright.o vmi.o -Xlinker --start-group \
>> -lhyzip \
>> -lhypool -Xlinker --end-group  -lc -lm -ldl
>>     
>
>
> --
> Mark Hindess <ma...@googlemail.com>
> IBM Java Technology Centre, UK.
>
>   

Re: [jira] Created: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by Mark Hindess <ma...@googlemail.com>.
What version of make?  I have no problem with either vmi (or text) at
that revision this with "make --version" of "GNU Make 3.81beta4".

I'd like to share more files between linux and windows and I suspect
dos files are more likely to work correctly on both.  So I'd like to
understand this problem a little better - though dos2unix
linux.IA32/*/makefile is a reasonable quick fix for now.

What is really confusing me  is why is it only the text and vmi
makefiles?  The other makefiles are dos files too!

-Mark.

On 27/02/06, Richard Liang (JIRA) <ji...@apache.org> wrote:
> Cannot make libvmi.so and libhytext.so on linux
> -----------------------------------------------
>
>          Key: HARMONY-136
>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Richard Liang
>
>
> Hello,
>
> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
>
> in /native-src/linux.IA32/vmi/
>
> ====issue command: make
> ====output:
>
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> : No such file or directory
> make: *** [../libvmi.so] Error 1
>
> ====issue command: dos2unix makefile
> ====issue command: make
> ====output:
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> -lhyzip \
> -lhypool -Xlinker --end-group  -lc -lm -ldl


--
Mark Hindess <ma...@googlemail.com>
IBM Java Technology Centre, UK.

[jira] Commented: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-136?page=comments#action_12368099 ] 

Richard Liang commented on HARMONY-136:
---------------------------------------

Thanks Tim. 
The fix looks good. Please close this issue.

> Cannot make libvmi.so and libhytext.so on linux
> -----------------------------------------------
>
>          Key: HARMONY-136
>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Richard Liang
>  Attachments: readme_patch.txt
>
> Hello,
> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
> in /native-src/linux.IA32/vmi/
> ====issue command: make 
> ====output:
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> : No such file or directory
> make: *** [../libvmi.so] Error 1
> ====issue command: dos2unix makefile
> ====issue command: make
> ====output:
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> -lhyzip \
> -lhypool -Xlinker --end-group  -lc -lm -ldl

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by "Mark Hindess (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-136?page=comments#action_12367930 ] 

Mark Hindess commented on HARMONY-136:
--------------------------------------

I can reproduce this on make v3.79.1 but not on v3.80.  I'm pretty sure it must be a bug in the make parser.  It's falling over on the "--start-group \\r\n" sequence which also appears in most of the other dll makefiles.  A trivial change such as joining "--start-group \\r\n -lhyzip \\r\n" to a the single line "--start-group -lhyzip \\r\n" fixes the problem.

On the plus side, this problem occur when I use the latest trunk with my outstanding JIRA patches applied.  But I don't think this is something we can easily code to avoid so it might be best upgrading anyway.

Just grabbing ftp://ftp.gnu.org/gnu/make/make-3.80.tar.bz2 and replacing /usr/bin/make with a version built from that source should help avoid this kind of problem in future.


> Cannot make libvmi.so and libhytext.so on linux
> -----------------------------------------------
>
>          Key: HARMONY-136
>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Richard Liang

>
> Hello,
> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
> in /native-src/linux.IA32/vmi/
> ====issue command: make 
> ====output:
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> : No such file or directory
> make: *** [../libvmi.so] Error 1
> ====issue command: dos2unix makefile
> ====issue command: make
> ====output:
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> -lhyzip \
> -lhypool -Xlinker --end-group  -lc -lm -ldl

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-136?page=comments#action_12368093 ] 

Tim Ellison commented on HARMONY-136:
-------------------------------------

Thanks Richard,  patched the README.txt at repo revision 381630.


> Cannot make libvmi.so and libhytext.so on linux
> -----------------------------------------------
>
>          Key: HARMONY-136
>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Richard Liang
>  Attachments: readme_patch.txt
>
> Hello,
> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
> in /native-src/linux.IA32/vmi/
> ====issue command: make 
> ====output:
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> : No such file or directory
> make: *** [../libvmi.so] Error 1
> ====issue command: dos2unix makefile
> ====issue command: make
> ====output:
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> -lhyzip \
> -lhypool -Xlinker --end-group  -lc -lm -ldl

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-136?page=all ]
     
Tim Ellison closed HARMONY-136:
-------------------------------


Verified by Richard.

> Cannot make libvmi.so and libhytext.so on linux
> -----------------------------------------------
>
>          Key: HARMONY-136
>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Richard Liang
>  Attachments: readme_patch.txt
>
> Hello,
> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
> in /native-src/linux.IA32/vmi/
> ====issue command: make 
> ====output:
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> : No such file or directory
> make: *** [../libvmi.so] Error 1
> ====issue command: dos2unix makefile
> ====issue command: make
> ====output:
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> -lhyzip \
> -lhypool -Xlinker --end-group  -lc -lm -ldl

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-136?page=all ]
     
Tim Ellison resolved HARMONY-136:
---------------------------------

    Resolution: Invalid

Feel free to submit a documentation patch Ricahrd, in the meantime I'm marking this issue as resolved.

> Cannot make libvmi.so and libhytext.so on linux
> -----------------------------------------------
>
>          Key: HARMONY-136
>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Richard Liang

>
> Hello,
> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
> in /native-src/linux.IA32/vmi/
> ====issue command: make 
> ====output:
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> : No such file or directory
> make: *** [../libvmi.so] Error 1
> ====issue command: dos2unix makefile
> ====issue command: make
> ====output:
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> -lhyzip \
> -lhypool -Xlinker --end-group  -lc -lm -ldl

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-136?page=all ]

Richard Liang updated HARMONY-136:
----------------------------------

    Attachment: readme_patch.txt

Add a new section of "Troubleshooting & Known Problems" in README.txt. 

Feel free to change my words. :-)

> Cannot make libvmi.so and libhytext.so on linux
> -----------------------------------------------
>
>          Key: HARMONY-136
>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Richard Liang
>  Attachments: readme_patch.txt
>
> Hello,
> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
> in /native-src/linux.IA32/vmi/
> ====issue command: make 
> ====output:
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> : No such file or directory
> make: *** [../libvmi.so] Error 1
> ====issue command: dos2unix makefile
> ====issue command: make
> ====output:
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> -lhyzip \
> -lhypool -Xlinker --end-group  -lc -lm -ldl

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (HARMONY-136) Cannot make libvmi.so and libhytext.so on linux

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-136?page=comments#action_12367950 ] 

Richard Liang commented on HARMONY-136:
---------------------------------------

Thank you, Mark.
Maybe we should document this issue in something like "Harmony Build Guide" to remind other people to use the latest make.

> Cannot make libvmi.so and libhytext.so on linux
> -----------------------------------------------
>
>          Key: HARMONY-136
>          URL: http://issues.apache.org/jira/browse/HARMONY-136
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Richard Liang

>
> Hello,
> When trying to build Harmony native code on my redhat linux (RHEL 3), I fail to make the libvmi.so. But after I convert the "makefile"(revision=379478) to unix format using dos2unix, the "make" is successful. The same problem occurs in module text.
> in /native-src/linux.IA32/vmi/
> ====issue command: make 
> ====output:
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi_copyright.o vmi_copyright.c
> cc -fpic  -DLINUX -D_REENTRANT -O1 -march=pentium3 -DIPv6_FUNCTION_SUPPORT  -DHYX86 -I../include    -c -o vmi.o vmi.c
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> : No such file or directory
> make: *** [../libvmi.so] Error 1
> ====issue command: dos2unix makefile
> ====issue command: make
> ====output:
> cc  -shared  -Wl,-Map=vmi.map \
> -Wl,--version-script,vmi.exp -Wl,-soname=libvmi.so \
>  -L.  -L../lib -L.. -o ../libvmi.so \
> vmi_copyright.o vmi.o -Xlinker --start-group \
> -lhyzip \
> -lhypool -Xlinker --end-group  -lc -lm -ldl

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira