Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 350130 Details for
Bug 455296
dev-scheme/tinyscheme does not respect AR
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
tinyscheme-1.40-makefile.patch
tinyscheme-1.40-makefile.patch (text/plain), 1.06 KB, created by
Michael Mair-Keimberger (mm1ke)
on 2013-06-04 19:56:13 UTC
(
hide
)
Description:
tinyscheme-1.40-makefile.patch
Filename:
MIME Type:
Creator:
Michael Mair-Keimberger (mm1ke)
Created:
2013-06-04 19:56:13 UTC
Size:
1.06 KB
patch
obsolete
>--- makefile 2011-01-16 08:51:17.000000000 +0100 >+++ makefile_new 2013-06-04 20:17:53.675650152 +0200 >@@ -18,7 +18,7 @@ > #AR= echo > > # Unix, generally >-CC = gcc -fpic >+CC = $(CC) > DEBUG=-g -Wall -Wno-char-subscripts -O > Osuf=o > SOsuf=so >@@ -27,11 +27,11 @@ > LIBPREFIX=lib > OUT = -o $@ > RM= -rm -f >-AR= ar crs >+AR= $(AR) >+ARFLAGS = crs > > # Linux >-LD = gcc >-LDFLAGS = -shared >+LD = $(CC) > DEBUG=-g -Wno-char-subscripts -O > SYS_LIBS= -ldl > PLATFORM_FEATURES= -DSUN_DL=1 >@@ -60,16 +60,16 @@ > all: $(LIBTARGET) $(STATICLIBTARGET) scheme$(EXE_EXT) > > %.$(Osuf): %.c >- $(CC) -I. -c $(DEBUG) $(FEATURES) $(DL_FLAGS) $< >+ $(CC) -fpic $(CFLAGS) -I. -c $(FEATURES) $(DL_FLAGS) $< > > $(LIBTARGET): $(OBJS) >- $(LD) $(LDFLAGS) $(OUT) $(OBJS) $(SYS_LIBS) >+ $(LD) -shared $(LDFLAGS) -Wl,-soname=$@ -o $@ $(OBJS) $(SYS_LIBS) > > scheme$(EXE_EXT): $(OBJS) >- $(CC) -o $@ $(DEBUG) $(OBJS) $(SYS_LIBS) >+ $(LD) $(LDFLAGS) -o $@ $(OBJS) $(SYS_LIBS) > > $(STATICLIBTARGET): $(OBJS) >- $(AR) $@ $(OBJS) >+ $(AR) $(ARFLAGS) $@ $(OBJS) > > $(OBJS): scheme.h scheme-private.h opdefines.h > dynload.$(Osuf): dynload.h
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 455296
:
350128
| 350130