1 /*        Id: ccconfig.h,v 1.18 2014/12/24 08:43:28 plunky Exp        */
2 /*        $NetBSD: ccconfig.h,v 1.1.1.5 2016/02/09 20:29:20 plunky Exp $        */
3 
4 /*-
5  * Copyright (c) 2007 David O'Brien <obrien@FreeBSD.org>
6  * Copyright (c) 2007 Ed Schouten <ed@fxq.nl>
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  */
30 
31 #define CPPADD { "-D__FreeBSD__=" MKS(TARGOSVER), "-D__ELF__", \
32           "-D__unix__=1", "-D__unix=1", NULL, }
33 
34 /* host-dependent */
35 #define CRT0                  "crt1.o"
36 #define GCRT0                 "gcrt1.o"
37 #define   DYNLINKLIB          "/libexec/ld-elf.so.1"
38 #define STARTLABEL "_start"
39 
40 #if defined(mach_i386)
41 #define CPPMDADD { "-D__i386__", "-D__i386", NULL, }
42 #elif defined(mach_amd64)
43 #define   AMD64_32_EMUL       "elf_i386_fbsd"
44 #define   AMD64_64_EMUL       "elf_x86_64_fbsd"
45 #include "../inc/amd64.h"
46 #elif defined(mach_sparc64)
47 #define CPPMDADD \
48           { "-D__sparc64__", "-D__sparc_v9__", "-D__sparc__", "-D__sparc",\
49             "-D__LP64__=1", "-D_LP64=1", NULL, }
50 #else
51 #error defines for arch missing
52 #endif
53 
54 #ifdef LANG_F77
55 #define F77LIBLIST { "-lF77", "-lI77", "-lm", "-lc", NULL };
56 #endif
57