[1724] | 1 | /* $Id: ChangeLog.emx 2690 2006-04-01 20:48:09Z bird $ */
|
---|
| 2 |
|
---|
[2690] | 3 | 2006-04-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
| 4 | - libend:
|
---|
| 5 | o #89: wlink defines __end, _end, __edata and _edata, so split
|
---|
| 6 | it all up even more so wlink doesn't get upset.
|
---|
| 7 |
|
---|
[2689] | 8 | 2006-03-31: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
| 9 | - emxomfld:
|
---|
| 10 | o #89: Support for wlink, the watcom linker.
|
---|
| 11 |
|
---|
[2673] | 12 | 2006-03-19: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
| 13 | - *:
|
---|
| 14 | o Synced over changed from 0.6.1 bugfixing.
|
---|
| 15 | - emxbind:
|
---|
| 16 | o #38: Fixed truncation bug writing to the LX nametable. (Yuri)
|
---|
| 17 | o #38: Imports and exports are limited to 255 not 127 chars. (Yuri)
|
---|
| 18 | o #28: Use DLL name from the .def file when present.
|
---|
| 19 | - emxomf:
|
---|
| 20 | o #70: Demangle symbol names in debug info. (thanks to Yuri)
|
---|
| 21 | - emxomfld:
|
---|
| 22 | o #55: delete the response file when reinit the args.
|
---|
| 23 | o #46: specify .map file extension to the linker.
|
---|
| 24 | o #34: Removed all the silliness trying to deal with truncated symbols.
|
---|
| 25 | o Don't display usage() on failure, just the error message.
|
---|
| 26 | o #20: use mkstemp + close instead of mktemp for the response file.
|
---|
| 27 | - ld:
|
---|
| 28 | o #20: use make_temp_file instead of mktemp. This involved including
|
---|
| 29 | libiberty.h which required some adjustments of duplicate code to work.
|
---|
| 30 | o #27: Applied fix from Yuri.
|
---|
| 31 | - libmoddef:
|
---|
| 32 | o Allow '.' and '@' in LIBRARY/NAME names.
|
---|
[2232] | 33 |
|
---|
[2448] | 34 | 2004-11-14: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
| 35 | - ChangeLog.emx:
|
---|
| 36 | o Renamed and cleaned out all the libc stuff.
|
---|
| 37 | o Reorganizing the repository.
|
---|
| 38 |
|
---|
[2427] | 39 | 2005-11-12: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
[2431] | 40 | - emxomf:
|
---|
[2432] | 41 | o Fixed problems with symbol truncation.
|
---|
[2431] | 42 | Kudos to Yuri for tracking down the places which required attention.
|
---|
[2427] | 43 |
|
---|
[2316] | 44 | 2005-08-28: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
[2314] | 45 | - version.smak:
|
---|
| 46 | o Changed version number back to 3.3.5 / 0.6 rc2.
|
---|
| 47 |
|
---|
[2294] | 48 | 2005-08-21: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
[2300] | 49 | - emxbind, emxomfld:
|
---|
| 50 | o Default stack size set to 1MB.
|
---|
| 51 | The old defaults were 8MB (emxbind) and 8KB (emxomfld).
|
---|
[2294] | 52 |
|
---|
[2274] | 53 | 2005-07-24: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
| 54 | - emximp:
|
---|
| 55 | o Fixed bad done string allocation.
|
---|
| 56 | - ld:
|
---|
| 57 | o Fixed a case of memory access after free.
|
---|
[2275] | 58 | o Switched back to alloca and adding 23 MB of stack.
|
---|
[2274] | 59 |
|
---|
[2254] | 60 | 2005-07-17: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
[2263] | 61 | - version.smak:
|
---|
| 62 | o Changed version number back to 3.3.5 / 0.6 rc1.
|
---|
[2254] | 63 |
|
---|
[2096] | 64 | 2005-06-27: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
| 65 | - emxomfld, ld:
|
---|
| 66 | o Generate .def-file for dlls without one. (This only makes sense for
|
---|
| 67 | emxomfld since ld doesn't implement __declspec(dllexport) yet, but
|
---|
| 68 | anyway.)
|
---|
[2098] | 69 | - emxomf, emxomfld:
|
---|
| 70 | o Kicked out all the old weak handling (from early 3.2.2 alphas).
|
---|
[2096] | 71 |
|
---|
[1989] | 72 | 2005-06-05: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
[1993] | 73 | - libomflib, emxomfar:
|
---|
| 74 | o Allow multiple modules by the same basename. This is not in tradition with
|
---|
| 75 | other librarians, but it solves incompatible behaviour between emxomfar and ar.
|
---|
[1999] | 76 | - ld:
|
---|
| 77 | o Avoid using alloca since we might easily run out of stack for big objects
|
---|
| 78 | with debuginfo.
|
---|
[2001] | 79 | - emxomf:
|
---|
| 80 | o Added support for new EMX a.out stab N_EXP (0x6c). This encodes export
|
---|
| 81 | definitions. (gcc can do __declspec(dllexport) now.)
|
---|
| 82 | TODO: ld needs updating, probably this is the right time to drop the
|
---|
| 83 | old ld and fixup the binutils port!
|
---|
[1999] | 84 |
|
---|
[1936] | 85 | 2005-04-30: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
| 86 | - libmoddef:
|
---|
| 87 | o Allow empty definition strings. (weakld failed on python _curses_m)
|
---|
| 88 | - weakld:
|
---|
| 89 | o Fixed incorrect .def-file parse error message.
|
---|
| 90 |
|
---|
[1883] | 91 | 2005-04-23: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
[1886] | 92 | - emxomf:
|
---|
| 93 | o Refined the 'G' hack fixing globals in the text segment.
|
---|
[1883] | 94 |
|
---|
[1847] | 95 | 2005-03-13: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
| 96 | - version.smak:
|
---|
| 97 | o 6b4 -> 6b5.
|
---|
| 98 |
|
---|
| 99 | - emxomf:
|
---|
| 100 | o Fixed getopt(,,"l::") problem. BSD getopt doesn't pass FLAG_PERMUTE for getopt and
|
---|
| 101 | thus it would consume the next argument unless it was an option. Using
|
---|
| 102 | getopt_long(,,"l::", NULL, NULL) solves the problem.
|
---|
| 103 |
|
---|
[1858] | 104 |
|
---|
[1724] | 105 | 2004-12-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
|
---|
[1732] | 106 | - ChangeLog.Libc:
|
---|
| 107 | o Created this file.
|
---|
[1724] | 108 |
|
---|