mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01:00
This gcc-2.6.0 should work with 2.0
This commit is contained in:
parent
1490bf4054
commit
250fc6c839
@ -3,8 +3,9 @@
|
||||
#
|
||||
|
||||
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../include
|
||||
CFLAGS+= -Dbsd4_4
|
||||
CFLAGS+= -DGCC_INCLUDE_DIR=\"FOO\"
|
||||
CFLAGS+= -DDEFAULT_TARGET_VERSION=\"2.6.0\"
|
||||
CFLAGS+= -DDEFAULT_TARGET_MACHINE=\"i386-unknown-freebsd\"
|
||||
CFLAGS+= -DDEFAULT_TARGET_MACHINE=\"i386--freebsd\"
|
||||
CFLAGS+= -DMD_EXEC_PREFIX=\"/usr/libexec/\"
|
||||
CFLAGS+= -DSTANDARD_STARTFILE_PREFIX=\"/usr/lib\"
|
||||
|
16
gnu/usr.bin/cc/README
Normal file
16
gnu/usr.bin/cc/README
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
$FreeBSD$
|
||||
|
||||
This directory contains gcc in a form that uses "bmake" makefiles.
|
||||
This is not the place you want to start, if you want to hack gcc.
|
||||
we have included everything here which is part of the source-code
|
||||
of gcc, but still, don't use this as a hacking-base.
|
||||
|
||||
If you suspect a problem with gcc, or just want to hack it in general,
|
||||
get a complete gcc-X.Y.Z.tar.gz from somewhere, and use that.
|
||||
|
||||
Please look in the directory src/gnu/gnu2bmake to find the tools
|
||||
to generate these files.
|
||||
|
||||
Thankyou.
|
||||
|
155
gnu/usr.bin/cc/legal/gen-protos.c
Normal file
155
gnu/usr.bin/cc/legal/gen-protos.c
Normal file
@ -0,0 +1,155 @@
|
||||
/* gen-protos.c - massages a list of prototypes, for use by fixproto.
|
||||
Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the terms of the GNU General Public License as published by the
|
||||
Free Software Foundation; either version 2, or (at your option) any
|
||||
later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
#include "hconfig.h"
|
||||
#include "scan.h"
|
||||
|
||||
#define HASH_SIZE 2503 /* a prime */
|
||||
|
||||
int hash_tab[HASH_SIZE];
|
||||
int verbose = 0;
|
||||
|
||||
sstring linebuf;
|
||||
|
||||
/* Avoid error if config defines abort as fancy_abort.
|
||||
It's not worth "really" implementing this because ordinary
|
||||
compiler users never run fix-header. */
|
||||
|
||||
void
|
||||
fancy_abort ()
|
||||
{
|
||||
abort ();
|
||||
}
|
||||
|
||||
int
|
||||
main (argc, argv)
|
||||
int argc;
|
||||
char** argv;
|
||||
{
|
||||
FILE *inf = stdin;
|
||||
FILE *outf = stdout;
|
||||
int next_index = 0;
|
||||
int i, i0;
|
||||
|
||||
fprintf (outf, "struct fn_decl std_protos[] = {\n");
|
||||
|
||||
for (;;)
|
||||
{
|
||||
int c = skip_spaces (inf, ' ');
|
||||
int param_nesting = 1;
|
||||
char *param_start, *param_end, *decl_start,
|
||||
*name_start, *name_end;
|
||||
register char *ptr;
|
||||
if (c == EOF)
|
||||
break;
|
||||
linebuf.ptr = linebuf.base;
|
||||
ungetc (c, inf);
|
||||
c = read_upto (inf, &linebuf, '\n');
|
||||
if (linebuf.base[0] == '#') /* skip cpp command */
|
||||
continue;
|
||||
if (linebuf.base[0] == '\0') /* skip empty line */
|
||||
continue;
|
||||
|
||||
ptr = linebuf.ptr - 1;
|
||||
while (*ptr == ' ' || *ptr == '\t') ptr--;
|
||||
if (*ptr-- != ';')
|
||||
{
|
||||
fprintf (stderr, "Funny input line: %s\n", linebuf.base);
|
||||
continue;
|
||||
}
|
||||
while (*ptr == ' ' || *ptr == '\t') ptr--;
|
||||
if (*ptr != ')')
|
||||
{
|
||||
fprintf (stderr, "Funny input line: %s\n", linebuf.base);
|
||||
continue;
|
||||
}
|
||||
param_end = ptr;
|
||||
for (;;)
|
||||
{
|
||||
int c = *--ptr;
|
||||
if (c == '(' && --param_nesting == 0)
|
||||
break;
|
||||
else if (c == ')')
|
||||
param_nesting++;
|
||||
}
|
||||
param_start = ptr+1;
|
||||
|
||||
ptr--;
|
||||
while (*ptr == ' ' || *ptr == '\t') ptr--;
|
||||
|
||||
if (!isalnum (*ptr))
|
||||
{
|
||||
if (verbose)
|
||||
fprintf (stderr, "%s: Can't handle this complex prototype: %s\n",
|
||||
argv[0], linebuf.base);
|
||||
continue;
|
||||
}
|
||||
name_end = ptr+1;
|
||||
|
||||
while (isalnum (*ptr) || *ptr == '_') --ptr;
|
||||
name_start = ptr+1;
|
||||
while (*ptr == ' ' || *ptr == '\t') ptr--;
|
||||
ptr[1] = 0;
|
||||
*name_end = 0;
|
||||
*param_end = 0;
|
||||
*name_end = 0;
|
||||
|
||||
decl_start = linebuf.base;
|
||||
if (strncmp (decl_start, "typedef ", 8) == 0)
|
||||
continue;
|
||||
if (strncmp (decl_start, "extern ", 7) == 0)
|
||||
decl_start += 7;
|
||||
|
||||
|
||||
/* NOTE: If you edit this,
|
||||
also edit lookup_std_proto in fix-header.c !! */
|
||||
i = hash (name_start) % HASH_SIZE;
|
||||
i0 = i;
|
||||
if (hash_tab[i] != 0)
|
||||
{
|
||||
for (;;)
|
||||
{
|
||||
i = (i+1) % HASH_SIZE;
|
||||
if (i == i0)
|
||||
abort ();
|
||||
if (hash_tab[i] == 0)
|
||||
break;
|
||||
}
|
||||
}
|
||||
hash_tab[i] = next_index;
|
||||
|
||||
fprintf (outf, " {\"%s\", \"%s\", \"%s\" },\n",
|
||||
name_start, decl_start, param_start);
|
||||
|
||||
next_index++;
|
||||
|
||||
if (c == EOF)
|
||||
break;
|
||||
}
|
||||
fprintf (outf, "{0, 0, 0}\n};\n");
|
||||
|
||||
|
||||
fprintf (outf, "#define HASH_SIZE %d\n", HASH_SIZE);
|
||||
fprintf (outf, "short hash_tab[HASH_SIZE] = {\n");
|
||||
for (i = 0; i < HASH_SIZE; i++)
|
||||
fprintf (outf, " %d,\n", hash_tab[i]);
|
||||
fprintf (outf, "};\n");
|
||||
|
||||
return 0;
|
||||
}
|
5295
gnu/usr.bin/cc/legal/md
Normal file
5295
gnu/usr.bin/cc/legal/md
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user