bcb1977b7f
With some compilers, C macros are defined differently on the command line than on Unix. It could be that the flad to define them isn't -D, it could also be that they need to be grouped together and not be mixed in with the other compiler flags (that's how it's done on VMS, for example). On Unix family platform configurations, we can continue to have macro definitions mixed in with the rest of the flags, so the changes in Configurations/*.conf are kept to an absolute minimum. Reviewed-by: Rich Salz <rsalz@openssl.org>
23 lines
777 B
Perl
23 lines
777 B
Perl
## -*- mode: perl; -*-
|
|
## Personal configuration targets
|
|
##
|
|
## If you edit this file, run this command before committing
|
|
## make -f Makefile.in TABLE
|
|
## This file is interpolated by the Configure script.
|
|
|
|
%targets = (
|
|
"levitte-linux-elf" => {
|
|
inherit_from => [ "linux-elf" ],
|
|
debug_cflags => add("-ggdb -g3"),
|
|
debug_defines => add(undef, "LEVITTE_DEBUG"),
|
|
build_scheme => [ "unified", "unix" ],
|
|
build_file => "Makefile",
|
|
},
|
|
"levitte-linux-x86_64" => {
|
|
inherit_from => [ "linux-x86_64" ],
|
|
debug_cflags => add("-ggdb -g3"),
|
|
debug_defines => add(undef, "LEVITTE_DEBUG"),
|
|
build_scheme => [ "unified", "unix" ],
|
|
build_file => "Makefile",
|
|
},
|
|
);
|