search for: ld_solib_flag

Displaying 1 result from an estimated 1 matches for "ld_solib_flag".

Did you mean: ld_solib_flags
2003 Nov 27
1
[PATCH] do not use -R on ppc to link shared objects
...h/Makefile +++ ash/Makefile 2003/11/27 15:04:02 @@ -36,7 +36,7 @@ $(STRIP) $(PROG) $(PROG).shared: $(OBJS) $(LIBS) - $(LD) $(LDFLAGS) -o $(PROG).shared -e main $(KLIBSRC)/interp.o $(OBJS) -R $(KLIBSRC)/libc.so $(LIBGCC) + $(LD) $(LDFLAGS) -o $(PROG).shared -e main $(KLIBSRC)/interp.o $(OBJS) $(LD_SOLIB_FLAGS) $(KLIBSRC)/libc.so $(LIBGCC) $(STRIP) $(PROG).shared $(CRT0) $(LIBS): --- klibc/Makefile +++ klibc/Makefile 2003/11/27 15:03:50 @@ -62,7 +62,7 @@ $(STRIP) $@.stripped tests/%.shared : tests/%.o interp.o $(SOLIB) - $(LD) $(LDFLAGS) -o $@ -e main interp.o tests/$*.o -R $(SOLIB) $(LIBGCC)...