Ignore:
Timestamp:
Sep 24, 2006, 9:37:41 AM (19 years ago)
Author:
bird
Message:
  • kBuild/footer.kmk:

o Recursive template inheritance.

  • kBuild/header.kmk, kBuild/footer.kmk:

o Removed some checks for features which are present in both gmake 3.81 and kmk.

Anyone trying to bootstrap kBuild will have to build gmake 3.81 first.

  • Config.kmk, src/gmake:

o Allow all kinds of ways of saying Windows in BUILD_TARGET.

  • kBuild/bin/x86.win32/:

o Rebuilt kmk.exe.

  • kBuild/bin/x86.os2/:

o Added kDepPre.exe and kDepIDB.exe.
o Rebuilt kmk.exe and kmk_gmake.exe.

  • src/gmake:

o Update KMK_FEATURES to include the optimizations from earlier this week.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/gmake/variable.c

    r534 r552  
    988988
    989989  /* Define KMK_FEATURES to indicate various working KMK features. */
    990   (void) define_variable ("KMK_FEATURES", 12, "abspath toupper tolower", o_default, 0);
    991 #endif
     990# if defined(CONFIG_WITH_TOUPPER_TOLOWER) \
     991  && defined(CONFIG_WITH_VALUE_LENGTH) && defined(CONFIG_WITH_COMPARE) \
     992  && defined(KMK_HELPERS)
     993  (void) define_variable ("KMK_FEATURES", 12,
     994                          "abspath"
     995                          " toupper tolower"
     996                          " comp-vars"
     997                          " kb-src-tool kb-obj-base kb-obj-suff kb-src-prop kb-src-one"
     998                          , o_default, 0);
     999# else /* MSC can't deal with strings mixed with #if/#endif, thus the slow way. */
     1000  strcpy(buf, "abspath");
     1001#  if defined(CONFIG_WITH_TOUPPER_TOLOWER)
     1002  strcat(buf, " toupper tolower");
     1003#  endif
     1004#  if defined(CONFIG_WITH_VALUE_LENGTH) && defined(CONFIG_WITH_COMPARE)
     1005  strcat(buf, " comp-vars");
     1006#  endif
     1007#  ifdef KMK_HELPERS
     1008  strcat(buf, " kb-src-tool kb-obj-base kb-obj-suff kb-src-prop kb-src-one");
     1009#  endif
     1010  (void) define_variable ("KMK_FEATURES", 12, buf, o_default, 0);
     1011# endif
     1012#endif /* KMK */
    9921013
    9931014#ifdef CONFIG_WITH_KMK_BUILTIN
Note: See TracChangeset for help on using the changeset viewer.