Skip to content

Commit

Permalink
prep
Browse files Browse the repository at this point in the history
  • Loading branch information
gpertea committed Aug 25, 2020
1 parent 0fa3650 commit 090cba2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ ifneq (,$(filter %release %static, $(MAKECMDGOALS)))
ifneq (,$(findstring static,$(MAKECMDGOALS)))
LDFLAGS += -static-libstdc++ -static-libgcc
endif
CXXFLAGS := -O3 -DNDEBUG -std=c++0x $(CXXFLAGS)
CXXFLAGS := -O3 -DNDEBUG -std=c++11 $(CXXFLAGS)
else # debug build
CXXFLAGS += -g -O0 -DDEBUG -D_DEBUG -DGDEBUG -std=c++0x
CXXFLAGS += -g -O0 -DDEBUG -D_DEBUG -DGDEBUG -std=c++11
ifneq (,$(filter %memcheck %memdebug, $(MAKECMDGOALS)))
#make memcheck : use the statically linked address sanitizer in gcc 4.9.x
GCCVER49 := $(shell expr `${CXX} -dumpversion | cut -f1,2 -d.` \>= 4.9)
Expand Down
2 changes: 1 addition & 1 deletion gffcompare.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <errno.h>
#include "gtf_tracking.h"

#define VERSION "0.11.8"
#define VERSION "0.12.1"

#define USAGE "Usage:\n\
gffcompare [-r <reference_mrna.gtf> [-R]] [-T] [-V] [-s <seq_path>]\n\
Expand Down
2 changes: 1 addition & 1 deletion prep_source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ libdir=$pack/gclib/
cp LICENSE README.md gffcompare.cpp gtf_tracking.{h,cpp} \
GIntervalTree.{h,cpp} trmap.cpp $pack/
sed 's|\.\./gclib|./gclib|' Makefile > $pack/Makefile
cp ../gclib/{GVec,GList,GHash}.hh $libdir
cp ../gclib/{GVec,GList,GHashMap,khashl}.hh ../gclib/xxhash.h $libdir
cp ../gclib/{GArgs,GBase,gdna,GStr,gff,codons,GFaSeqGet,GFastaIndex}.{h,cpp} $libdir
tar cvfz $pack.tar.gz $pack
ls -l $pack.tar.gz
Expand Down

0 comments on commit 090cba2

Please sign in to comment.