Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
set standard compiler variable
· 869cc7e3
Andreas Tille
authored
May 23, 2019
869cc7e3
Upload to unstable
· 38bf815e
Andreas Tille
authored
May 23, 2019
38bf815e
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
38bf815e
clonalframeml (1.11-3) unstable; urgency=medium
* set standard compiler variable
Closes: #929211
-- Andreas Tille <tille@debian.org> Thu, 23 May 2019 08:09:05 +0200
clonalframeml (1.11-2) unstable; urgency=medium
* debhelper 11
...
...
debian/patches/cross.patch
0 → 100644
View file @
38bf815e
From: Helmut Grohne <helmut@subdivi.de>
Date: Sun, 19 May 2019 11:45:22 +0200
Bug-Debian: https://bugs.debian.org/929211
Description: set standard compiler variable
--- a/src/makefile
+++ b/src/makefile
@@ -1,5 +1,5 @@
# Make file for ClonalFrameML
-CC = g++
+CXX = g++
CFLAGS += -O3 -I./ -I./myutils -I./coalesce
OBJECTS = main.o
HEADERS = main.h brent.h powell.h version.h
@@ -9,10 +9,10 @@
HEADERS = main.h brent.h powell.h versio
all: version ClonalFrameML
ClonalFrameML: $(OBJECTS)
- $(CC) $(LDFLAGS) -o ClonalFrameML $(OBJECTS)
+ $(CXX) $(LDFLAGS) -o ClonalFrameML $(OBJECTS)
main.o: main.cpp $(HEADERS)
- $(CC) $(CFLAGS) -c -o main.o main.cpp
+ $(CXX) $(CFLAGS) -c -o main.o main.cpp
version: version.h
# /bin/echo "#define ClonalFrameML_GITRevision \"`git describe --tags`\"" > version.h
debian/patches/series
View file @
38bf815e
fix_clean_target.patch
use_debian_revision_as_version.patch
hardening.patch
cross.patch