Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (25 - 27 of 245)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Ticket Resolution Summary Owner Reporter
#43 fixed libc: Runtime configuration of where to use UnixEAs bird bird
Description

This is a followup to #21. Should add some kind of env.var. for overriding the default configuration.

#44 fixed libc: statvfs reports 14 chars max filename length everywhere bird bird
Description

I think this is a left over from the DOS days. We should return 255 on HPFS and JFS and 12 on FAT. There are one or two constants too I believe which needs fixing.

#46 fixed ilink map file name is wrong when multiple dots are in target name bird Yuri Dario
Description

When the target name has multiple dots (e.g. my.code.dll), ilink will generate a map file without proper extension (e.g. my.code). Patch will force .map extension if map file name is not specified on command line.

Index: emxomfld.c
===================================================================
--- emxomfld.c	(revision 2508)
+++ emxomfld.c	(working copy)
@@ -1659,6 +1659,9 @@
     {
       t = xstrdup (output_fname);
       _remext (t);
+      //yd if module name has multiple dots, ilink will not add .map extension
+      //so I'll force it here
+      strcat( t, ".map");
       map_fname = t;
     }

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Note: See TracQuery for help on using queries.