3 my ($cflags, $platform) = @ARGV;
5 $cflags = "compiler: $cflags";
9 /* auto-generated by util/mkbuildinf.pl for crypto/cversion.c */
12 * Generate CFLAGS as an array of individual characters. This is a
13 * workaround for the situation where CFLAGS gets too long for a C90 string
16 static const char cflags[] = {
19 foreach my $c (split //, $cflags) {
20 # Max 18 characters per line
21 if (($ctr++ % 18) == 0) {
32 #define PLATFORM "platform: $platform"
33 #define DATE "built on: $date"