summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-11 15:25:40 +0000
committerjoeh <joeh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-11 15:25:40 +0000
commit795653dae361d86c91b988eed1116ac297fedfa2 (patch)
tree82e195b9662d943b2f857c4e6663889e6e813cdc
parent7332f1ebfdda5297090081702fa243aab4f49597 (diff)
downloadATCD-795653dae361d86c91b988eed1116ac297fedfa2.tar.gz
Tue Jul 11 10:24:03 2000 Joe Hoffert <joeh@cs.wustl.edu>
-rw-r--r--PACE/ChangeLog7
-rw-r--r--PACE/tests/Makefile6
2 files changed, 10 insertions, 3 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index b2309ef7506..5ca745a93fe 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,3 +1,10 @@
+Tue Jul 11 10:24:03 2000 Joe Hoffert <joeh@cs.wustl.edu>
+
+ * tests/Makefile:
+ Changed to always include the PACE library. This was causing
+ problems for functions that are never inlined when inlining
+ is enabled.
+
Mon Jul 10 13:47:25 2000 John Heitmann <jwh1@cs.wustl.edu>
* pace/stddef.h
diff --git a/PACE/tests/Makefile b/PACE/tests/Makefile
index 0c5ba844507..6c40fd9e590 100644
--- a/PACE/tests/Makefile
+++ b/PACE/tests/Makefile
@@ -17,13 +17,13 @@ endif # static_libs_only
ifndef inline
CFLAGS += -DPACE_HAS_INLINE
else
- ifeq (0,$(inline))
- LIBS += -L$(PACE_ROOT)/pace -lPACE
- else
+ ifneq (0,$(inline))
CFLAGS += -DPACE_HAS_INLINE
endif # inline
endif # ! inline
+LIBS += -L$(PACE_ROOT)/pace -lPACE
+
#----------------------------------------------------------------------------
# Local macros
#----------------------------------------------------------------------------