File: debug_symbols.patch

package info (click to toggle)
bbmap 39.20%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 26,008 kB
  • sloc: java: 312,743; sh: 18,096; python: 5,247; ansic: 2,074; perl: 96; makefile: 39; xml: 38
file content (16 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Author: Andreas Tille <tille@debian.org>
Last-Update: 2019-03-25
Description: Enable debug symbols

--- a/jni/makefile.linux
+++ b/jni/makefile.linux
@@ -1,7 +1,7 @@
 CC=gcc
 INCS=-I"$(JAVA_HOME)/include" -I"$(JAVA_HOME)/include/linux"
-CFLAGS=-O3 -Wall -std=c99 -fPIC
-LDFLAGS=-O3 -Wall -std=c99 -fPIC -shared
+CFLAGS+=-O3 -Wall -std=c99 -fPIC
+LDFLAGS+=-O3 -Wall -std=c99 -fPIC -shared
 OBJ=BandedAlignerJNI.o MultiStateAligner11tsJNI.o BBMergeOverlapper.o IceCreamAlignerJNI.o
 
 %.o: %.c