| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0004698 | OCaml | OCaml general | public | 2009-01-20 09:20 | 2012-09-17 15:13 |
|
| Reporter | aballier | |
| Assigned To | | |
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | acknowledged | Resolution | open | |
| Platform | | OS | | OS Version | |
| Product Version | 3.11.0 | |
| Target Version | 4.01.0+dev | Fixed in Version | | |
|
| Summary | 0004698: ocamlyacc is built ignoring user set LDFLAGS |
| Description | This is a very minor issue, but ocamlyacc is built with CC ignoring user set LDFLAGS; here is a patch for this. |
| Tags | No tags attached. |
|
| Attached Files | ocaml-3.11.0_beta1-yaccldflags.patch [^] (508 bytes) 2009-01-20 09:20 [Show Content] [Hide Content]Index: ocaml-3.11.0+beta1/yacc/Makefile
===================================================================
--- ocaml-3.11.0+beta1.orig/yacc/Makefile
+++ ocaml-3.11.0+beta1/yacc/Makefile
@@ -25,7 +25,7 @@ OBJS= closure.o error.o lalr.o lr0.o mai
all: ocamlyacc$(EXE)
ocamlyacc$(EXE): $(OBJS)
- $(CC) $(CFLAGS) $(CCLINKFLAGS) -o ocamlyacc $(OBJS)
+ $(CC) $(LDFLAGS) $(CFLAGS) $(CCLINKFLAGS) -o ocamlyacc $(OBJS)
version.h : ../VERSION
echo "#define OCAML_VERSION \"`head -1 ../VERSION`\"" >version.h
|
|