From 64281d26f73412fb4e7881cce6f7af35a42a2932 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 8 Sep 2016 12:44:22 -0400 Subject: [PATCH] Add integer.cpp to third position in GNUmakefile --- GNUmakefile-cross | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile-cross b/GNUmakefile-cross index bad3c5a3..17fecb02 100755 --- a/GNUmakefile-cross +++ b/GNUmakefile-cross @@ -113,7 +113,7 @@ endif # Dead code stripping # List cryptlib.cpp first and cpu.cpp second in an attempt to tame C++ static initialization problems. # The issue spills into POD data types of cpu.cpp due to the storage class of the bools, so cpu.cpp # is the second candidate for explicit initialization order. -SRCS := cryptlib.cpp cpu.cpp $(filter-out cryptlib.cpp cpu.cpp pch.cpp simple.cpp winpipes.cpp cryptlib_bds.cpp,$(wildcard *.cpp)) +SRCS := cryptlib.cpp cpu.cpp integer.cpp $(filter-out cryptlib.cpp cpu.cpp integer.cpp pch.cpp simple.cpp winpipes.cpp cryptlib_bds.cpp,$(wildcard *.cpp)) OBJS := $(SRCS:.cpp=.o) # test.o needs to be after bench.o for cygwin 1.1.4 (possible ld bug?)