Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/gnu/usr.bin/ld/ld Pull up revision 1.2 (requested by my...



details:   https://anonhg.NetBSD.org/src/rev/645610a21e46
branches:  netbsd-1-4
changeset: 471234:645610a21e46
user:      he <he%NetBSD.org@localhost>
date:      Sun Jan 21 17:07:42 2001 +0000

description:
Pull up revision 1.2 (requested by mycroft):
  The options --whole-archive and --no-whole-archive should be
  position-dependent.  Make them actually behave that way.

diffstat:

 gnu/usr.bin/ld/ld/ld_i.h |  19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diffs (34 lines):

diff -r 3a006ba00e3f -r 645610a21e46 gnu/usr.bin/ld/ld/ld_i.h
--- a/gnu/usr.bin/ld/ld/ld_i.h  Sun Jan 21 17:07:26 2001 +0000
+++ b/gnu/usr.bin/ld/ld/ld_i.h  Sun Jan 21 17:07:42 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ld_i.h,v 1.1 1998/12/17 14:34:51 pk Exp $      */
+/*     $NetBSD: ld_i.h,v 1.1.2.1 2001/01/21 17:07:42 he Exp $  */
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -283,15 +283,16 @@
        int     lib_major, lib_minor;   /* Version numbers of a shared object */
 
        int     flags;
-#define E_IS_LIBRARY           1       /* File is a an archive */
-#define E_HEADER_VALID         2       /* File's header has been read */
-#define E_SEARCH_DIRS          4       /* Search directories for file */
-#define E_SEARCH_DYNAMIC       8       /* Search for shared libs allowed */
-#define E_JUST_SYMS            0x10    /* File is used for incremental load */
-#define E_DYNAMIC              0x20    /* File is a shared object */
-#define E_SCRAPPED             0x40    /* Ignore this file */
-#define E_SYMBOLS_USED         0x80    /* Symbols from this entry were used */
+#define E_IS_LIBRARY           0x001   /* File is a an archive */
+#define E_HEADER_VALID         0x002   /* File's header has been read */
+#define E_SEARCH_DIRS          0x004   /* Search directories for file */
+#define E_SEARCH_DYNAMIC       0x008   /* Search for shared libs allowed */
+#define E_JUST_SYMS            0x010   /* File is used for incremental load */
+#define E_DYNAMIC              0x020   /* File is a shared object */
+#define E_SCRAPPED             0x040   /* Ignore this file */
+#define E_SYMBOLS_USED         0x080   /* Symbols from this entry were used */
 #define E_SECONDCLASS          0x100   /* Shared object is a subsidiary */
+#define        E_FORCE_ARCHIVE         0x200   /* Include all library symbols */
 };
 
 /*



Home | Main Index | Thread Index | Old Index