diff options
author | midipix <writeonce@midipix.org> | 2019-01-03 02:21:50 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-03 02:25:39 -0500 |
commit | a1bf6333ea6162baa95bbf89c2b889224a0dcf9c (patch) | |
tree | 5149629488bb762900d6cc1444b3ac6a418047a5 /configure | |
parent | 4aabf7b12df24e43a71d3eaf9bcf260f714ccfe3 (diff) | |
download | bfirm-a1bf6333ea6162baa95bbf89c2b889224a0dcf9c.tar.bz2 bfirm-a1bf6333ea6162baa95bbf89c2b889224a0dcf9c.tar.xz |
build system: configure: support project-specific default native {c|ld}flags.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -320,6 +320,10 @@ common_defaults() [ -z "$mb_ldflags_last" ] && mb_ldflags_last=$mb_default_ldflags_last [ -z "$mb_ldflags_once" ] && mb_ldflags_once=$mb_default_ldflags_once + # native switches + [ -z "$mb_native_cflags" ] && mb_native_cflags=$mb_default_native_cflags + [ -z "$mb_native_ldflags" ] && mb_native_ldflags=$mb_default_native_ldflags + # config [ -z "$mb_all_static" ] && mb_all_static='no' [ -z "$mb_all_shared" ] && mb_all_shared='no' |