Fix build process to return correct line-number for preprocessed files.
[SXSI/xpathcomp.git] / myocamlbuild.ml
index 62dbdaf..23901cd 100644 (file)
@@ -140,7 +140,8 @@ let () = dispatch begin
        cxx_link_flags @= [ A "-g" ];
       end
       else begin
-       compile_flags @= [A "-noassert"; A "-unsafe"];
+       compile_flags @= [A "-noassert"];
+       pp_macro_options @= [ A "-unsafe" ];
        native_compile_flags @= [ A "-inline"; A ocaml_inline ];
        cxx_flags @= [ A "-O3" ]
       end;
@@ -160,7 +161,7 @@ let () = dispatch begin
       rule "compile cpp -> o" ~prod:"%.o" ~deps:[ "%.cpp"] cxx_compile;
 
       let syntax_flags = S ([ A "-syntax"; A "camlp4o";
-                           S (ppopt [A "-printer" ; A"ocaml"]);
+                           S (ppopt [A "-printer" ; A"Camlp4OCamlAstDumper"]);
                            S (ppopt !pp_macro_options) ])
       in
       flag [ "ocaml"; "ocamldep"] syntax_flags;