From 5bbb243684ffe9f70e814bded8cb5062efddacb9 Mon Sep 17 00:00:00 2001 From: andrewkern Date: Fri, 24 Jul 2020 22:39:58 +0000 Subject: [PATCH] add compiler flag to help gcc10 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f9ab906..e9bb08f 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ all: discoal discoal: discoal_multipop.c discoalFunctions.c discoal.h discoalFunctions.h - $(CC) $(CFLAGS) -o discoal discoal_multipop.c discoalFunctions.c ranlibComplete.c alleleTraj.c -lm + $(CC) $(CFLAGS) -o discoal discoal_multipop.c discoalFunctions.c ranlibComplete.c alleleTraj.c -lm -fcommon test: alleleTrajTest.c alleleTraj.c alleleTraj.h discoalFunctions.c $(CC) $(CFLAGS) -o alleleTrajTest alleleTrajTest.c alleleTraj.c ranlibComplete.c discoalFunctions.c -lm