diff options
Diffstat (limited to 'config/global/build-behave.in')
-rw-r--r-- | config/global/build-behave.in | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/config/global/build-behave.in b/config/global/build-behave.in index bb11e913..c98e0fa6 100644 --- a/config/global/build-behave.in +++ b/config/global/build-behave.in @@ -41,7 +41,27 @@ config USE_PIPES Use gcc's option -pipe to use pipes rather than temp files when building the toolchain. -config EXTRA_FLAGS_FOR_HOST +config EXTRA_CFLAGS_FOR_BUILD + string + prompt "Extra build compiler flags" + default "" + help + Extra flags to pass to the build C and C++ compiler. + + May be used to change the default features of the build + compiler such as turning off the stack protector or fortify. + +config EXTRA_LDFLAGS_FOR_BUILD + string + prompt "Extra build linker flags" + default "" + help + Extra flags to pass to the build linker. + + May be used to change the default features of the build + linker. + +config EXTRA_CFLAGS_FOR_HOST string prompt "Extra host compiler flags" default "" @@ -50,6 +70,16 @@ config EXTRA_FLAGS_FOR_HOST May be used to change the default features of the host compiler such as turning off the stack protector or fortify. + +config EXTRA_LDFLAGS_FOR_HOST + string + prompt "Extra host linker flags" + default "" + help + Extra flags to pass to the host linker. + + May be used to change the default features of the host + linker. choice bool |