Line 180... |
Line 180... |
cdl_option CYGBLD_GLOBAL_CFLAGS {
|
cdl_option CYGBLD_GLOBAL_CFLAGS {
|
display "Global compiler flags"
|
display "Global compiler flags"
|
flavor data
|
flavor data
|
no_define
|
no_define
|
default_value { CYGBLD_GLOBAL_WARNFLAGS .
|
default_value { CYGBLD_GLOBAL_WARNFLAGS .
|
"-g -fno-omit-frame-pointer -fno-rtti -fno-exceptions " .
|
"-g -O2 -fno-omit-frame-pointer -fno-rtti -fno-exceptions " .
|
(CYGHWR_MUL_IMPLEMENTED ? "-mhard-mul " : "-msoft-mul ") .
|
(CYGHWR_MUL_IMPLEMENTED ? "-mhard-mul " : "-msoft-mul ") .
|
(CYGHWR_DIV_IMPLEMENTED ? "-mhard-div " : "-msoft-div ") .
|
(CYGHWR_DIV_IMPLEMENTED ? "-mhard-div " : "-msoft-div ") .
|
(CYGHWR_FPU_IMPLEMENTED ? "-mhard-float " : "-msoft-float ") }
|
(CYGHWR_FPU_IMPLEMENTED ? "-mhard-float " : "-msoft-float ") }
|
description "
|
description "
|
This option controls the global compiler flags which
|
This option controls the global compiler flags which
|
Line 195... |
Line 195... |
|
|
cdl_option CYGBLD_GLOBAL_LDFLAGS {
|
cdl_option CYGBLD_GLOBAL_LDFLAGS {
|
display "Global linker flags"
|
display "Global linker flags"
|
flavor data
|
flavor data
|
no_define
|
no_define
|
default_value { "-g -nostdlib -Wl,--gc-sections -Wl,-static " .
|
default_value { "-g -O2 -nostdlib -Wl,--gc-sections -Wl,-static " .
|
(CYGHWR_MUL_IMPLEMENTED ? "-mhard-mul " : "-msoft-mul ") .
|
(CYGHWR_MUL_IMPLEMENTED ? "-mhard-mul " : "-msoft-mul ") .
|
(CYGHWR_DIV_IMPLEMENTED ? "-mhard-div " : "-msoft-div ") .
|
(CYGHWR_DIV_IMPLEMENTED ? "-mhard-div " : "-msoft-div ") .
|
(CYGHWR_FPU_IMPLEMENTED ? "-mhard-float " : "-msoft-float ") }
|
(CYGHWR_FPU_IMPLEMENTED ? "-mhard-float " : "-msoft-float ") }
|
description "
|
description "
|
This option controls the global linker flags. Individual
|
This option controls the global linker flags. Individual
|