From ccf6340f6c22dc90ccfc3d8e8cc4d420b41e12ae Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Sat, 3 Jul 2021 12:25:58 -0400 Subject: [PATCH] Fixed bug for linux compile --- makefile | 2 +- test/mee/testVectorAlgorithms.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 5580a57..8e26d2f 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ NUMCORES = $(shell grep -c "^processor" /proc/cpuinfo) NUMCORESWIN = ${NUMBER_OF_PROCESSORS} TESTFLAGS = -O2 -std=c++20 -Wall -fcoroutines LINKEDLIBS = -lgmp -lgmpxx -INCLUDE_DIR = ./headers/mee +INCLUDE_DIR = ../../headers TESTDIR = ./test/mee BINDIR = ./bin LOGDIR = ./logs diff --git a/test/mee/testVectorAlgorithms.cpp b/test/mee/testVectorAlgorithms.cpp index 799188d..77cebc7 100644 --- a/test/mee/testVectorAlgorithms.cpp +++ b/test/mee/testVectorAlgorithms.cpp @@ -23,6 +23,7 @@ #include #include +#include #include #include #include "mee/numberAlgorithms.hpp"