]> sourceware.org Git - newlib-cygwin.git/commitdiff
Fix support for PECOFF weak symbols
authorNick Clifton <nickc@redhat.com>
Mon, 8 Nov 2004 08:12:40 +0000 (08:12 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 8 Nov 2004 08:12:40 +0000 (08:12 +0000)
include/coff/ChangeLog
include/coff/pe.h

index 290a5070ab4b344f99c19f1697b82c6703228ed9..d107734e9248f6ddc8cef05d5b5577a8f7d1d539 100644 (file)
@@ -1,3 +1,9 @@
+2004-11-08  Aaron W. LaFramboise <aaron98wiridge9@aaronwl.com>
+
+       * pe.h (IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY): Define.
+       (IMAGE_WEAK_EXTERN_SEARCH_LIBRARY): Same.
+       (IMAGE_WEAK_EXTERN_SEARCH_ALIAS): Same.
+
 2004-08-13  Mark Kettenis  <kettenis@gnu.org>
 
        * symconst.h (langMax): Fix typo in comment.
index 363d307379b9bf418bc558498a347e762dcfdfb8..46128dd82c60dddadfd0656bfb203a5a540cb596 100644 (file)
@@ -1,6 +1,6 @@
 /* pe.h  -  PE COFF header information 
 
-   Copyright 2000, 2001, 2003 Free Software Foundation, Inc.
+   Copyright 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
@@ -310,4 +310,9 @@ typedef struct
 #define IMPORT_NAME_NOPREFIX   2
 #define IMPORT_NAME_UNDECORATE 3
 
+/* Weak external characteristics.  */
+#define IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY     1
+#define IMAGE_WEAK_EXTERN_SEARCH_LIBRARY       2
+#define IMAGE_WEAK_EXTERN_SEARCH_ALIAS         3
+
 #endif /* _PE_H */
This page took 0.035357 seconds and 5 git commands to generate.