You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Chekalkin (JIRA)" <ji...@apache.org> on 2007/10/11 15:10:50 UTC

[jira] Created: (HARMONY-4929) Can't build workin_vm (DRLVM) with custom compiler.

Can't build workin_vm (DRLVM) with custom compiler.
---------------------------------------------------

                 Key: HARMONY-4929
                 URL: https://issues.apache.org/jira/browse/HARMONY-4929
             Project: Harmony
          Issue Type: Bug
          Components: build - test - ci
         Environment: Debian/Lenny
            Reporter: Vasily Chekalkin
            Priority: Minor


Can't build DRLVM when CXX contains non alphabetic characters in name.

bacek@icebolt:~/src/trunk/working_vm/build$ echo $CXX
g++-4.1
bacek@icebolt:~/src/trunk/working_vm/build$ ./build.sh 
...

common_extra:

BUILD FAILED
/home/bacek/src/trunk/working_vm/build/make/build.xml:470: The following error occurred while executing this line:
/home/bacek/src/trunk/working_vm/build/make/build.xml:477: The following error occurred while executing this line:
/home/bacek/src/trunk/working_vm/build/make/build_component.xml:73: The following error occurred while executing this line:
/home/bacek/src/trunk/working_vm/build/lnx_ia32_g++-4.1_debug/semis/build/targets/common_extra.xml:8: g++-4.1 is not a legal value for this attribute

Total time: 1 minute 27 seconds


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (HARMONY-4929) Can't build workin_vm (DRLVM) with custom compiler.

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-4929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim Ellison closed HARMONY-4929.
--------------------------------


> Can't build workin_vm (DRLVM) with custom compiler.
> ---------------------------------------------------
>
>                 Key: HARMONY-4929
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4929
>             Project: Harmony
>          Issue Type: Bug
>          Components: build - test - ci
>         Environment: Debian/Lenny
>            Reporter: Vasily Chekalkin
>            Priority: Minor
>
> Can't build DRLVM when CXX contains non alphabetic characters in name.
> bacek@icebolt:~/src/trunk/working_vm/build$ echo $CXX
> g++-4.1
> bacek@icebolt:~/src/trunk/working_vm/build$ ./build.sh 
> ...
> common_extra:
> BUILD FAILED
> /home/bacek/src/trunk/working_vm/build/make/build.xml:470: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/make/build.xml:477: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/make/build_component.xml:73: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/lnx_ia32_g++-4.1_debug/semis/build/targets/common_extra.xml:8: g++-4.1 is not a legal value for this attribute
> Total time: 1 minute 27 seconds

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-4929) Can't build workin_vm (DRLVM) with custom compiler.

Posted by "Alexey Varlamov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-4929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12534214 ] 

Alexey Varlamov commented on HARMONY-4929:
------------------------------------------

Right, cpptask only supports pre-defined set of compilers: "gcc", "g++", "c++", "g77", "msvc", "bcc", "msrc", "brc", "df", "midl", "icl", "ecl", "icc", "ecc", "CC", "aCC", "os390", "os400", "sunc89", "xlC", "cl6x", "cl55", "armcc", "armcpp", "tcc", "tcpp", "sparc-sun-solaris2-gcc", "sparc-sun-solaris2-g++", "sparc-sun-solaris2-c++", "sparc-sun-solaris2-g77", "gcc-cross", "g++-cross", "c++-cross", "g77-cross", "uic", "moc", "xpidl", "wcl", "wfl".
So you can either symlink to an appropriate alias as above, or indeed try Salikh's solution, see HARMONY-4640.

> Can't build workin_vm (DRLVM) with custom compiler.
> ---------------------------------------------------
>
>                 Key: HARMONY-4929
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4929
>             Project: Harmony
>          Issue Type: Bug
>          Components: build - test - ci
>         Environment: Debian/Lenny
>            Reporter: Vasily Chekalkin
>            Priority: Minor
>
> Can't build DRLVM when CXX contains non alphabetic characters in name.
> bacek@icebolt:~/src/trunk/working_vm/build$ echo $CXX
> g++-4.1
> bacek@icebolt:~/src/trunk/working_vm/build$ ./build.sh 
> ...
> common_extra:
> BUILD FAILED
> /home/bacek/src/trunk/working_vm/build/make/build.xml:470: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/make/build.xml:477: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/make/build_component.xml:73: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/lnx_ia32_g++-4.1_debug/semis/build/targets/common_extra.xml:8: g++-4.1 is not a legal value for this attribute
> Total time: 1 minute 27 seconds

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-4929) Can't build workin_vm (DRLVM) with custom compiler.

Posted by "Gregory Shimansky (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-4929?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12534052 ] 

Gregory Shimansky commented on HARMONY-4929:
--------------------------------------------

It is likely to be a limitation of cc ant task that is used to compiled native code in DRLVM. Alternatively I think it is possible to use make based build system created by Salikh Zakirov, but I am not sure how well it is tested. Search dev list for Salikh's name to find more about his build system.

> Can't build workin_vm (DRLVM) with custom compiler.
> ---------------------------------------------------
>
>                 Key: HARMONY-4929
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4929
>             Project: Harmony
>          Issue Type: Bug
>          Components: build - test - ci
>         Environment: Debian/Lenny
>            Reporter: Vasily Chekalkin
>            Priority: Minor
>
> Can't build DRLVM when CXX contains non alphabetic characters in name.
> bacek@icebolt:~/src/trunk/working_vm/build$ echo $CXX
> g++-4.1
> bacek@icebolt:~/src/trunk/working_vm/build$ ./build.sh 
> ...
> common_extra:
> BUILD FAILED
> /home/bacek/src/trunk/working_vm/build/make/build.xml:470: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/make/build.xml:477: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/make/build_component.xml:73: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/lnx_ia32_g++-4.1_debug/semis/build/targets/common_extra.xml:8: g++-4.1 is not a legal value for this attribute
> Total time: 1 minute 27 seconds

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (HARMONY-4929) Can't build workin_vm (DRLVM) with custom compiler.

Posted by "Alexey Varlamov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-4929?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Varlamov resolved HARMONY-4929.
--------------------------------------

    Resolution: Won't Fix

> Can't build workin_vm (DRLVM) with custom compiler.
> ---------------------------------------------------
>
>                 Key: HARMONY-4929
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4929
>             Project: Harmony
>          Issue Type: Bug
>          Components: build - test - ci
>         Environment: Debian/Lenny
>            Reporter: Vasily Chekalkin
>            Priority: Minor
>
> Can't build DRLVM when CXX contains non alphabetic characters in name.
> bacek@icebolt:~/src/trunk/working_vm/build$ echo $CXX
> g++-4.1
> bacek@icebolt:~/src/trunk/working_vm/build$ ./build.sh 
> ...
> common_extra:
> BUILD FAILED
> /home/bacek/src/trunk/working_vm/build/make/build.xml:470: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/make/build.xml:477: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/make/build_component.xml:73: The following error occurred while executing this line:
> /home/bacek/src/trunk/working_vm/build/lnx_ia32_g++-4.1_debug/semis/build/targets/common_extra.xml:8: g++-4.1 is not a legal value for this attribute
> Total time: 1 minute 27 seconds

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.