Changeset 339 for trunk


Ignore:
Timestamp:
May 23, 2008, 11:04:04 PM (17 years ago)
Author:
cinc
Message:

New test app for garbage collection with fix based on ideas by Doodle

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/nom/Makefile.kmk

    r331 r339  
    4545ifeq ($(BUILD_TARGET),win)
    4646 libnomobjtk_LIBS += $(PATH_LIB)/libnomgc$(SUFF_LIB)
     47endif
     48ifeq ($(BUILD_TARGET),darwin_)
     49           libnomobjtk_LIBS += /opt/local/lib/libgc.dylib
    4750else
    4851 libnomobjtk_LIBS += $(PATH_LIB)/libnomgc$(SUFF_DLL)
  • trunk/tests/Makefile.kmk

    r327 r339  
    9090test-nom_LIBS.linux = $(PATH_LIB)/libnomgc.so
    9191
     92
     93#
     94# The garbage collector test program.
     95#
     96PROGRAMS += test-gc
     97test-gc_TEMPLATE = nombin
     98test-gc_SOURCES = \
     99        c/test-gc.c
     100ifeq ($(BUILD_TARGET),win)
     101 test-gc_LIBS = \
     102        $(TARGET_libnomtest:.dll=.lib)
     103else
     104 test-gc_LIBS = \
     105        $(TARGET_libnomtest)
     106endif
     107
    92108endif # NOM_WITH_TESTCASES
    93109
Note: See TracChangeset for help on using the changeset viewer.