There is a bug in GNU make 3.77's wildcard handling which will cause a
problem while building Crypto++. If you encounter this problem, replaced
the line in Makefile:
SRCS = $(wildcard *.cpp)
with
SRCS = $(shell ls *.cpp)
You may also need to remove the space after the comma in this line:
LIBOBJS = $(filter-out $(TESTOBJS), $(OBJS))
Received on Thu Sep 23 1999 - 15:31:46 PDT
This archive was generated by hypermail 2.3.0
: Fri Feb 16 2018 - 13:20:06 PST