~ubuntu-branches/ubuntu/natty/linux86/natty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* config.h - configuration for linker */

/* Copyright (C) 1994 Bruce Evans */

/* one of these target processors must be defined */

#undef  I8086			/* Intel 8086 */
#define I80386			/* Intel 80386 */
#undef  MC6809			/* Motorola 6809 */

/* one of these target operating systems must be defined */

#undef  EDOS			/* generate EDOS executable */
#define MINIX			/* generate Minix executable */

/* these may need to be defined to suit the source processor */

#undef HOST_8BIT		/* enable some 8-bit optimizations */

#ifndef __AS386_16__
#define S_ALIGNMENT	4	/* source memory alignment, power of 2 */
				/* don't use for 8 bit processors */
				/* don't use even for 80386 - overhead for */
				/* alignment cancels improved access */
#endif

/* Any machine can use long offsets but i386 needs them */
#ifdef I80386
#define LONG_OFFSETS
#endif

/* these must be defined to suit the source libraries */

#define CREAT_PERMS	0666	/* permissions for creat() */
#define EXEC_PERMS	0111	/* extra permissions to set for executable */