source: mainline/uspace/app/pcc/os/openbsd/ccconfig.h@ 711e7fe5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 711e7fe5 was 711e7fe5, checked in by Prutkov Alex <prutkov.alex@…>, 14 years ago

Added printf module

  • Property mode set to 100755
File size: 2.4 KB
Line 
1/* $Id: ccconfig.h,v 1.8 2008/12/19 08:08:48 ragge Exp $ */
2
3/*
4 * Copyright (c) 2004 Anders Magnusson (ragge@ludd.luth.se).
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/*
31 * Various settings that controls how the C compiler works.
32 */
33
34/* common cpp predefines */
35#define CPPADD { "-D__OpenBSD__", "-D__ELF__", NULL, }
36#define DYNLINKER { "-dynamic-linker", "/usr/libexec/ld.so", NULL }
37#define CRT0FILE "/usr/lib/crt0.o"
38#define CRT0FILE_PROFILE "/usr/lib/gcrt0.o"
39#define STARTFILES { "/usr/lib/crtbegin.o", NULL }
40#define ENDFILES { "/usr/lib/crtend.o", NULL }
41
42#ifdef LANG_F77
43#define F77LIBLIST { "-L/usr/local/lib", "-lF77", "-lI77", "-lm", "-lc", NULL };
44#endif
45
46#if defined(mach_amd64)
47#define CPPMDADD { "-D__amd64__", NULL, }
48#elif defined(mach_i386)
49#define CPPMDADD { "-D__i386__", NULL, }
50#elif defined(mach_vax)
51#define CPPMDADD { "-D__vax__", NULL, }
52#elif defined(mach_powerpc)
53#define CPPMDADD { "-D__powerpc__", NULL }
54#elif defined(mach_sparc64)
55#define CPPMDADD { "-D__sparc64__", NULL }
56#else
57#error defines for arch missing
58#endif
59
60#define ELFABI
61#define STABS
Note: See TracBrowser for help on using the repository browser.