Changeset 552 for trunk/Config.kmk


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
  • trunk/Config.kmk

    r533 r552  
    4343endif
    4444
    45 ifeq ($(BUILD_TARGET),win32)
     45ifeq ($(filter-out x86.win32 x86.win x86.nt,$(BUILD_TARGET_ARCH).$(BUILD_TARGET)),)
     46ifndef PATH_DEV
     47$(error To build on windows you'll have to set PATH_DEV to point to somewhere kbuild can find VCC70.)
     48endif
    4649TEMPLATE_BIN_TOOL               = VCC70
    4750TEMPLATE_BIN_DEFS               = WINDOWS32 _CONSOLE WIN32 __WIN32__
     
    5053TEMPLATE_BIN_CFLAGS.release     = -O2
    5154TEMPLATE_BIN_CFLAGS.profile     = -O2 -GH -Gh
     55#todo use path macros from the tool
    5256TEMPLATE_BIN_INCS              += \
    5357        . \
Note: See TracChangeset for help on using the changeset viewer.