Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-02-09 15:31:47 -0800 (Thu, 09 Feb 2006)
Revision: 8656
Log message:

      Use Unix.LargeFile.stat instead of Unix.stat.
      

Changes  Path
+29 -18 omake-branches/0.9.6.x/src/builtin/omake_builtin_file.ml
+2 -2 omake-branches/0.9.6.x/src/builtin/omake_builtin_shell.ml
+28 -28 omake-branches/0.9.6.x/src/builtin/omake_builtin_test.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-02-10 21:26:47 -0800 (Fri, 10 Feb 2006)
Revision: 8666
Log message:

      Include the locations of the _both_ rules in the "multiple ways to build"
      error message.
      

Changes  Path
+5 -1 omake-branches/0.9.6.x/src/env/omake_env.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-02-17 10:37:16 -0800 (Fri, 17 Feb 2006)
Revision: 8721
Log message:

      Added functions nth-hd, nth-tl, and subrange.
      Also added Aleksey's comment patch (bug #564).
      

Changes  Path
+47 -1 omake-branches/0.9.6.x/doc/man/omake-base.1
+47 -1 omake-branches/0.9.6.x/doc/man/omake-doc.1
+113 -1 omake-branches/0.9.6.x/src/builtin/omake_builtin_base.ml
+5 -11 omake-branches/0.9.6.x/src/env/omake_ast_lex.mll
+1 -4 omake-branches/0.9.6.x/src/env/omake_ast_parse.input
+2 -4 omake-branches/0.9.6.x/src/env/omake_gen_parse.ml

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-02-19 15:10:08 -0800 (Sun, 19 Feb 2006)
Revision: 8737
Log message:

      A number of improvements in C++ support:
      
      - Use g++ instead of gcc (when present) as CXX.
      
      - Allow .cc and .c++ extensions in addition to .cpp
      
      - Added CXXProgram and CXXProgramInstall functions (regenerated some of the
        documentation as well).
      

Changes  Path
+220 -171 omake-branches/0.9.6.x/doc/html/omake-base.html
+464 -409 omake-branches/0.9.6.x/doc/html/omake-doc.html
+54 -48 omake-branches/0.9.6.x/doc/html/omake-root.html
+5 -0 omake-branches/0.9.6.x/doc/man/omake-doc.1
+5 -0 omake-branches/0.9.6.x/doc/man/omake-root.1
Binary omake-branches/0.9.6.x/doc/ps/omake-doc.dvi
Binary omake-branches/0.9.6.x/doc/ps/omake-doc.pdf
Binary omake-branches/0.9.6.x/doc/ps/omake-doc.ps
+39 -12 omake-branches/0.9.6.x/lib/build/C.om

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-02-20 20:05:27 -0800 (Mon, 20 Feb 2006)
Revision: 8748
Log message:

      :squash: dependencies should not disable the selection of
      implicit rules.  Instead, a squash target is buildable iff
      the normal target is buildable.
      
      Bumped the version to 0.9.6.8.1.
      

Changes  Path
+22 -20 omake-branches/0.9.6.x/src/build/omake_target.ml
+6 -2 omake-branches/0.9.6.x/src/builtin/omake_builtin_rule.ml
+24 -13 omake-branches/0.9.6.x/src/ir/omake_node.ml
+7 -7 omake-branches/0.9.6.x/src/ir/omake_node_sig.ml
+1 -1 omake-branches/0.9.6.x/version.txt

Changes by: Aleksey Nogin (nogin at cs.caltech.edu)
Date: 2006-02-21 00:05:14 -0800 (Tue, 21 Feb 2006)
Revision: 8757
Log message:

      Fixed ttwo C++ bugs noticed by Erick Tryzelaar.
      

Changes  Path
+2 -1 omake-branches/0.9.6.x/lib/build/C.om

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-02-26 14:54:55 -0800 (Sun, 26 Feb 2006)
Revision: 8789
Log message:

      Added auto-rehashing on relative names in the PATH.
      In addition, you can define "AUTO_REHASH = true" if
      you want to auto-rehash on all directories in the path.
      

Changes  Path
+1 -1 omake-branches/0.9.6.x/doc/man/omake-doc.1
+1 -1 omake-branches/0.9.6.x/doc/man/omake-root.1
+1 -1 omake-branches/0.9.6.x/lib/build/Common.om
+2 -2 omake-branches/0.9.6.x/src/build/omake_build.ml
+7 -2 omake-branches/0.9.6.x/src/build/omake_rule.ml
+3 -3 omake-branches/0.9.6.x/src/builtin/omake_builtin_file.ml
+4 -2 omake-branches/0.9.6.x/src/env/omake_env.ml
+65 -11 omake-branches/0.9.6.x/src/eval/omake_eval.ml
+1 -0 omake-branches/0.9.6.x/src/eval/omake_eval.mli
+35 -0 omake-branches/0.9.6.x/src/eval/omake_value.ml
+1 -0 omake-branches/0.9.6.x/src/eval/omake_value.mli
+115 -29 omake-branches/0.9.6.x/src/ir/omake_cache.ml
+6 -4 omake-branches/0.9.6.x/src/ir/omake_cache.mli
+8 -7 omake-branches/0.9.6.x/src/ir/omake_symbol.ml
+1 -1 omake-branches/0.9.6.x/src/shell/omake_shell_job.ml

Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2006-02-26 19:46:13 -0800 (Sun, 26 Feb 2006)
Revision: 8790
Log message:

      Ported the path lookup code to 0.9.7.
      
      It looks like we have a lot of porting to do someday:(
      Some things:
         - We may need to port the Phony flags
         - Aleksey also rearranged the files and their
           directories to get better dependencies.
      
      Not to do now, but we should start cataloguing them.
      

Changes  Path
+4 -4 omake-branches/omake_0_9_7_ref/doc/man/omake-doc.1
+4 -4 omake-branches/omake_0_9_7_ref/doc/man/omake-pervasives.1
+6 -5 omake-branches/omake_0_9_7_ref/lib/Pervasives.om
+2 -2 omake-branches/omake_0_9_7_ref/src/build/omake_builtin_file.ml
+1 -1 omake-branches/omake_0_9_7_ref/src/env/omake_ir_ast.ml
+65 -11 omake-branches/omake_0_9_7_ref/src/eval/omake_eval.ml
+1 -0 omake-branches/omake_0_9_7_ref/src/eval/omake_eval.mli
+1 -1 omake-branches/omake_0_9_7_ref/src/eval/omake_rule.ml
+128 -42 omake-branches/omake_0_9_7_ref/src/ir/omake_cache.ml
+3 -3 omake-branches/omake_0_9_7_ref/src/ir/omake_cache.mli
+11 -10 omake-branches/omake_0_9_7_ref/src/ir/omake_symbol.ml
+1 -0 omake-branches/omake_0_9_7_ref/src/ir/omake_virtual_id.ml
+1 -0 omake-branches/omake_0_9_7_ref/src/ir/omake_virtual_id.mli