xref: /netbsd-src/external/bsd/pcc/dist/pcc/driver/opt.c.in (revision 411dcbec990c8aa9c57d3bd2f4bcacadec0b1ab5)
1#include "driver.h"
2
3const char prog_cpp[] = @PROG_CPP@;
4const char prog_ccom[] = @PROG_CCOM@;
5const char prog_cxxcom[] = @PROG_CXXCOM@;
6const char prog_fcom[] = @PROG_FCOM@;
7const char prog_as[] = @PROG_AS@;
8const char prog_ld[] = @PROG_LD@;
9
10const char dir_libexec[] = @LIBEXEC@;
11
12const char dir_stdinc[] = @STDINC@;
13const char dir_pccinc[] = @PCCINC@;
14const char dir_pxxinc[] = @PXXINC@;
15const char dir_ftninc[] = @FTNINC@;
16
17const char dir_stdlib[] = @STDLIB@;
18const char dir_pcclib[] = @PCCLIB@;
19const char dir_pxxlib[] = @PXXLIB@;
20const char dir_ftnlib[] = @FTNLIB@;
21
22const struct target *target = &targ_${TARGET};
23
24const char *cc_names[] = { @CC_NAMES@ };
25const char *cpp_names[] = { @CPP_NAMES@ };
26const char *cxx_names[] = { @CXX_NAMES@ };
27const char *ftn_names[] = { @FTN_NAMES@ };
28