|
|
@ -76,40 +76,48 @@ menu_begin MENU_COMPILER 'Selecting compiler' |
|
|
|
choice ROCKCFG_DEFAULT_F77 $default $list |
|
|
|
menu_end |
|
|
|
|
|
|
|
if pkgcheck gcc2 X |
|
|
|
then |
|
|
|
menu_begin MENU_PKG_GCC2 'GCC (GNU Compiler Collection) 2.x options' |
|
|
|
bool 'Use GCC 2.x Stack-Smashing Protector' \ |
|
|
|
ROCKCFG_PKG_GCC2_STACKPRO 0 |
|
|
|
bool 'Do not build GCC 2.x CHILL compiler' \ |
|
|
|
ROCKCFG_PKG_GCC2_NO_CHILL 0 |
|
|
|
menu_end |
|
|
|
if pkgcheck gcc3 X && pkgcheck gcc33 X; then |
|
|
|
comment ' ' |
|
|
|
comment 'WARNING: gcc3 and gcc33 are not designed to work together!!' |
|
|
|
comment 'WARNING: please disable one of them.' |
|
|
|
fi |
|
|
|
|
|
|
|
if pkgcheck gcc3 X |
|
|
|
then |
|
|
|
menu_begin MENU_PKG_GCC3 'GCC (GNU Compiler Collection) 3.x options' |
|
|
|
bool 'Use GCC 3.x Stack-Smashing Protector' \ |
|
|
|
ROCKCFG_PKG_GCC3_STACKPRO 0 |
|
|
|
bool 'Do not build GCC 3.x JAVA compiler' \ |
|
|
|
ROCKCFG_PKG_GCC3_NO_JAVA 0 |
|
|
|
menu_end |
|
|
|
fi |
|
|
|
if pkgcheck "gcc2|gcc3|gcc33|gccx" X; then |
|
|
|
|
|
|
|
if pkgcheck gcc33 X |
|
|
|
then |
|
|
|
menu_begin MENU_PKG_GCC33 'GCC (GNU Compiler Collection) 3.3 options' |
|
|
|
bool 'Use GCC 3.3 Stack-Smashing Protector' \ |
|
|
|
ROCKCFG_PKG_GCC33_STACKPRO 0 |
|
|
|
bool 'Do not build GCC 3.3 JAVA compiler' \ |
|
|
|
menu_begin MENU_PKG_GCC 'GCC (GNU Compiler Collection) options' |
|
|
|
bool 'Use Stack-Smashing Protector when available' \ |
|
|
|
ROCKCFG_PKG_GCC_STACKPRO 0 |
|
|
|
%include package/*/*/subconfig-gcc.in |
|
|
|
|
|
|
|
if pkgcheck gcc2 X; then |
|
|
|
comment ' ' |
|
|
|
comment '--- GCC 2.x options' |
|
|
|
bool 'Do not build CHILL compiler' \ |
|
|
|
ROCKCFG_PKG_GCC2_NO_CHILL 0 |
|
|
|
%include package/*/*/subconfig-gcc2.in |
|
|
|
fi |
|
|
|
if pkgcheck gcc3 X; then |
|
|
|
comment ' ' |
|
|
|
comment '--- GCC 3.2.x options' |
|
|
|
bool 'Do not build JAVA compiler' \ |
|
|
|
ROCKCFG_PKG_GCC3_NO_JAVA 0 |
|
|
|
%include package/*/*/subconfig-gcc3.in |
|
|
|
fi |
|
|
|
if pkgcheck gcc33 X; then |
|
|
|
comment ' ' |
|
|
|
comment '--- GCC 3.3.x options' |
|
|
|
bool 'Do not build JAVA compiler' \ |
|
|
|
ROCKCFG_PKG_GCC33_NO_JAVA 0 |
|
|
|
menu_end |
|
|
|
fi |
|
|
|
|
|
|
|
if pkgcheck gccx X |
|
|
|
then |
|
|
|
menu_begin MENU_PKG_GCCX 'GCC (GNU Compiler Collection) snapshot options' |
|
|
|
bool 'Do not build GCC-snapshot JAVA compiler' \ |
|
|
|
%include package/*/*/subconfig-gcc33.in |
|
|
|
fi |
|
|
|
if pkgcheck gccx X; then |
|
|
|
comment ' ' |
|
|
|
comment '--- GCC-snapshot options' |
|
|
|
bool 'Do not build JAVA compiler' \ |
|
|
|
ROCKCFG_PKG_GCCX_NO_JAVA 0 |
|
|
|
%include package/*/*/subconfig-gccx.in |
|
|
|
fi |
|
|
|
|
|
|
|
menu_end |
|
|
|
fi |
|
|
|
|