diff options
author | Xiretza <xiretza@xiretza.xyz> | 2021-05-09 14:32:48 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2021-05-10 07:56:17 +0200 |
commit | 55a5513c14afb209b06ea86bbb918f6e13f1e50c (patch) | |
tree | 71c24e3b551f8da6a6f44d08b5aef9d153de1532 /src/ortho/debug | |
parent | b21b4e7b34807156d6d3bc3f8e30a41bf324dfcb (diff) | |
download | ghdl-55a5513c14afb209b06ea86bbb918f6e13f1e50c.tar.gz ghdl-55a5513c14afb209b06ea86bbb918f6e13f1e50c.tar.bz2 ghdl-55a5513c14afb209b06ea86bbb918f6e13f1e50c.zip |
ortho: use LDFLAGS and prefer them over defaults
Diffstat (limited to 'src/ortho/debug')
-rw-r--r-- | src/ortho/debug/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ortho/debug/Makefile b/src/ortho/debug/Makefile index 885ff0d55..d7d297c1b 100644 --- a/src/ortho/debug/Makefile +++ b/src/ortho/debug/Makefile @@ -23,14 +23,13 @@ CC=gcc CFLAGS=-g ALL_GNAT_FLAGS=-pipe -g -gnato -gnatwaeu -gnatf -gnaty3befhkmr GNATMAKE_FLAGS=$(ALL_GNAT_FLAGS) $(GNATFLAGS) -aI$(ortho_srcdir) -aI$(orthobe_srcdir) -aI. -#LARGS=-largs -static SED=sed all: $(ortho_exec) $(ortho_exec): force $(ortho_srcdir)/$(BE)/ortho_debug.ads - $(GNATMAKE) -o $@ $(GNATMAKE_FLAGS) ortho_debug-main -bargs -E $(LARGS) + $(GNATMAKE) -o $@ $(GNATMAKE_FLAGS) ortho_debug-main -bargs -E -largs $(LDFLAGS) clean: $(RM) -f *.o *.ali *~ b~*.ad? ortho_nodes-main |