Fixed bug for linux compile

This commit is contained in:
2021-07-03 12:25:58 -04:00
parent d579c1663b
commit ccf6340f6c
2 changed files with 2 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ NUMCORES = $(shell grep -c "^processor" /proc/cpuinfo)
NUMCORESWIN = ${NUMBER_OF_PROCESSORS} NUMCORESWIN = ${NUMBER_OF_PROCESSORS}
TESTFLAGS = -O2 -std=c++20 -Wall -fcoroutines TESTFLAGS = -O2 -std=c++20 -Wall -fcoroutines
LINKEDLIBS = -lgmp -lgmpxx LINKEDLIBS = -lgmp -lgmpxx
INCLUDE_DIR = ./headers/mee INCLUDE_DIR = ../../headers
TESTDIR = ./test/mee TESTDIR = ./test/mee
BINDIR = ./bin BINDIR = ./bin
LOGDIR = ./logs LOGDIR = ./logs

View File

@@ -23,6 +23,7 @@
#include <cinttypes> #include <cinttypes>
#include <iostream> #include <iostream>
#include <numeric>
#include <random> #include <random>
#include <vector> #include <vector>
#include "mee/numberAlgorithms.hpp" #include "mee/numberAlgorithms.hpp"