tags 436707 +patch
thanks

On 07/08/08 18:00 +0200, Julien Danjou said ...
> You should look for call to strip, ld -s or install -s which may strip 
> binaries.

"gcc -s" was stripping the binaries.

[snip...]
> > gcc -s -o dcraw dcraw.o -lm -ljpeg -llcms
> > gcc -s -o dcparse parse.o
[snip...]

Patch attached to fix this.

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/
diff -Nur dcraw-8.39/Makefile dcraw-8.39.new/Makefile
--- dcraw-8.39/Makefile 2007-09-11 16:53:55.000000000 +0530
+++ dcraw-8.39.new/Makefile     2007-09-11 16:55:01.569382000 +0530
@@ -12,22 +12,22 @@
 default: dcraw dcparse dcfujiturn dcfujiturn16 dcfujigreen dccleancrw
 
 dcraw: dcraw.o
-       $(CC) -s -o $@ dcraw.o -lm -ljpeg -llcms
+       $(CC) -o $@ dcraw.o -lm -ljpeg -llcms
 
 dcparse: parse.o
-       $(CC) -s -o $@ parse.o
+       $(CC) -o $@ parse.o
 
 dcfujiturn: fujiturn.o
-       $(CC) -s -o $@ fujiturn.o
+       $(CC) -o $@ fujiturn.o
 
 dcfujiturn16: fujiturn16.o
-       $(CC) -s -o $@ fujiturn16.o
+       $(CC) -o $@ fujiturn16.o
 
 dcfujigreen: fuji_green.o
-       $(CC) -s -o $@ fuji_green.o -lm
+       $(CC) -o $@ fuji_green.o -lm
 
 dccleancrw: clean_crw.o
-       $(CC) -s -o $@ clean_crw.o
+       $(CC) -o $@ clean_crw.o
 
 clean:
        rm -f core *.o

Attachment: signature.asc
Description: Digital signature

Reply via email to