1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Do not strip the debugging symbols from _oc_polybool.oct
Also, include the -g option to enable debugging option for all
compilers.
Author: Rafael Laboissiere <rafael@debian.org>
Forwarded: https://savannah.gnu.org/bugs/index.php?55343
Last-Update: 2020-05-26
--- octave-octclip-1.0.8.orig/src/Makefile
+++ octave-octclip-1.0.8/src/Makefile
@@ -40,7 +40,7 @@ compile:
$(MKOCTFILE) -c -I. segmento.c -o segmento.o
$(MKOCTFILE) -c -I. ventorno.c -o ventorno.o
$(MKOCTFILE) -c -I. proyecaux.c -o proyecaux.o
- $(MKOCTFILE) -s -I. _oc_polybool.cc *.o
+ $(MKOCTFILE) -g -I. _oc_polybool.cc *.o
.PHONY: clean
clean:
|