forked from ocaml/ocamlbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
3956 lines (2862 loc) · 94.9 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
We use "MPR#$N" to denote the ticket number $N on the Mantis bugtracker:
http://caml.inria.fr/mantis/view.php?id=$N
and OGPR#$N to denote the github pull issue against the OCaml repository
https://github.com/ocaml/ocaml/pull/$N
The form #$N indicates an issue on the github ocamlbuild repository,
https://github.com/ocaml/ocamlbuild/issues/$N
https://github.com/ocaml/ocamlbuild/pulls/$N
We also use PR#$N for pull requests.
Changes breaking compatibility are marked with a "* " bullet instead
of the usual "- ".
NEXT_RELEASE:
-------------
- Integrate the in-progress OCamlbuild manual, previously located at
https://github.com/gasche/manual-ocamlbuild
into the ocamlbuild repository, in the manual/ subdirectory.
The most current version of the manual can thus be accessed at
https://github.com/ocaml/ocamlbuild/tree/master/manual/manual.adoc
(Gabriel Scherer)
0.9.2 (1 May 2016):
-------------------
OCamlbuild 0.9.2 is a release to support OCaml 4.03. Martin Neuhäußer
contributed new flags for flambda-specific optimization options. We
also extend the scope of the flags -opaque and -for-pack, to align
with 4.03 best practices. Note that OCamlbuild should still work
correctly under older OCaml releases.
- #67: Add support for flambda's optimization parameters
The flags are named according to the flambda options with two exceptions:
optimization_rounds(int) for -rounds <int>
optimize({2,3,classic}) for -O{2,3,classic}
(Martin Neuhäußer)
- #70 (pratial): fix hygiene complains about the build directory under
Windows
(Andreas Hauptmann, Gabriel Scherer)
- #73: also pass predicates(foo) to ocamldep
(Jérémie Dimino)
- extend the scope of the -opaque flag under 4.03
(Gabriel Scherer)
- extend the scope of the -for-pack flag to ocamlc,
as recommend by OCaml compiler maintainers in
[PR#5996](http://caml.inria.fr/mantis/view.php?id=5995#c13339)
(Gabriel Scherer)
0.9.1 (29 Feb 2016):
--------------------
OCamlbuild 0.9.1 synchronizes the behavior of ocamlbuild with
changes in the OCaml compiler that are present in the 4.03 release
branch; this version that should be usable for testing packages using
4.03 before its release.
- Do not exclude files whose name starts with '_' from the source tree
(Gabriel Scherer, report by Daniel Bünzli on the caml-list)
- #44: When ocamlbuild discovers a cycle in the dependencies, the
displayed problematic path is now refined to the actual cycle
(François Bobot, review by Armaël Géneau)
- #51: synchronize handling of -o flag for C files with upstream OCaml
(whitequark)
OCamlbuild 0.9.0 (19 Jan 2016):
-------------------------------
OCamlbuild 0.9.0 is an experimental release designed to help testing
OCaml software in preparation for the 4.03 release -- the first one to
not include ocamlbuild.
- MPR#6794, MPR#6809: pass package-specific include flags when building C files
(Jérémie Dimino, request by whitequark)
- OGPR#208: add "asm" tag to ocamlbuild to enable flag -S
(ygrek)
- Changed OCamlbuild's license to LGPLv2 with static linking exception.
- OGPR#219: speedup target-already-built builds
(ygrek)
- MPR#6605, OGPR#117: un-hardcode camlp4 library path
(Vincent Laporte and Gabriel Scherer)
- #20: add -dot and -man-related ocamldoc options
(Gabriel Scherer)
- #10, PR#21: Fix manpages generation: properly pass the "manpage" tag.
(Armaël Guéneau)
- #20: add -documentation support for parametrized flag
(Gabriel Scherer, review by Rudi Grinberg and François Bobot)
- #10, #35: Use extension-independent tags for ocamldoc rules.
(Armaël Guéneau)
OCamlbuild was included in the OCaml compiler distribution between
OCaml 3.10.0 (May 2007) and OCaml 4.02.3 (July 2015). The changes
below correspond to the subset of ocamlbuild-related changes in those
OCaml releases.
-------------------------------------------------------------------------
OCaml 4.02.3 (27 Jul 2015):
---------------------------
OCaml 4.02.2 (17 Jun 2015):
---------------------------
OCamlbuild:
- MPR#6237: explicit "infer" tag to control or disable menhir --infer
(Hugo Heuzard)
- MPR#6625: pass -linkpkg to files built with -output-obj.
(whitequark)
- MPR#6702: explicit "linkpkg" and "dontlink(foo)" flags
(whitequark, Gabriel Scherer)
- MPR#6712: Ignore common VCS directories
(whitequark)
- MPR#6720: pass -g to C compilers when tag 'debug' is set
(whitequark, Gabriel Scherer)
- MPR#6733: add .byte.so and .native.so targets to pass
-output-obj -cclib -shared.
(whitequark)
- MPR#6733: "runtime_variant(X)" to pass -runtime-variant X option.
(whitequark)
- MPR#6774: new menhir-specific flags "only_tokens" and "external_tokens(Foo)"
(François Pottier)
Bug fixes:
- MPR#6626: ocamlbuild on cygwin cannot find ocamlfind
(Gergely Szilvasy)
- MPR#6640: ocamlbuild: wrong "unused tag" warning on "precious"
(report by user 'william')
- MPR#6652: ocamlbuild -clean does not print a newline after output
(Damien Doligez, report by Andi McClure)
- MPR#6793: ocamlbuild passes nonsensical "-ocamlc ..." commands to menhir
(Gabriel Scherer, report by Damien Doligez)
- MPR#6893: ocamlbuild: "tag not used" warning when using (p)dep
(Gabriel Scherer, report by Christiano Haesbaert)
OCaml 4.02.1 (14 Oct 2014):
---------------------------
Bug Fixes:
- MPR#6599: ocamlbuild: add -bin-annot when using -pack
(Christopher Zimmermann)
- ocamlbuild: add an -ocamlmklib option to change the ocamlmklib command
(Jérôme Vouillon)
OCaml 4.02.0 (29 Aug 2014):
---------------------------
Bug fixes:
- MPR#5406 ocamlbuild: "tag 'package' does not expect a parameter"
(Gabriel Scherer)
- MPR#6184: ocamlbuild: `ocamlfind ocamldep` does not support -predicate
(Jacques-Pascal Deplaix)
- MPR#6300: ocamlbuild -use-ocamlfind conflicts with -ocamlc
(Gabriel Scherer)
- MPR#6482: ocamlbuild fails when _tags file in unhygienic directory
(Gabriel Scherer)
- MPR#6502: ocamlbuild spurious warning on "use_menhir" tag
(Xavier Leroy)
Features wishes:
- MPR#5201: ocamlbuild: add --norc to the bash invocation to help performances
(Daniel Weil)
- MPR#6087: ocamlbuild, improve _tags parsing of escaped newlines
(Gabriel Scherer, request by Daniel Bünzli)
- MPR#6109: Typos in ocamlbuild error messages
(Gabriel Kerneis)
- MPR#6166: document -ocamldoc option of ocamlbuild
(Xavier Clerc)
- MPR#6187: ocamlbuild: warn when using -plugin-tag(s) without myocamlbuild.ml
(Jacques-Pascal Deplaix)
- MPR#6495: ocamlbuild tags 'safe_string', 'unsafe_string'
(Anil Madhavapeddy)
- make ocamldebug -I auto-detection work with ocamlbuild
(Josh Watzman)
OCaml 4.01.0 (12 Sep 2013):
---------------------------
Bug fixes:
- MPR#4469: emacs mode: caml-set-compile-command is annoying with ocamlbuild
(Daniel Bünzli)
- MPR#4502: ocamlbuild now reliably excludes the build-dir from hygiene check
(Gabriel Scherer, report by Romain Bardou)
- MPR#5102: ocamlbuild fails when using an unbound variable in rule dependency
(Xavier Clerc, report by Daniel Bünzli)
- MPR#5212: Improve ocamlbuild error messages of _tags parser
(ygrek)
- MPR#5300: ocamlbuild: verbose parameter should implicitly set classic display
(Xavier Clerc, report by Robert Jakob)
- MPR#5468: ocamlbuild should preserve order of parametric tags
(Wojciech Meyer, report by Dario Texeira)
- MPR#5763: ocamlbuild does not give correct flags when running menhir
(Gabriel Scherer, reported by Philippe Veber)
- MPR#5891: ocamlbuild: support rectypes tag for mlpack
(Khoo Yit Phang)
- MPR#6058: 'ocamlbuild -use-ocamlfind -tag thread -package threads t.cma' fails
(Gabriel Scherer, report by Hezekiah M. Carty)
- MPR#6109: Typos in ocamlbuild error messages
(Gabriel Kerneis)
Feature wishes:
- MPR#5243: improve the ocamlbuild API documentation in signatures.mli
(Christophe Troestler)
- MPR#6059: add -output-obj rules for ocamlbuild
(Anil Madhavapeddy)
- MPR#6060: ocamlbuild tags 'principal', 'strict_sequence' and 'short_paths'
(Anil Madhavapeddy)
- ocamlbuild tag 'no_alias_deps'
(Daniel Bünzli)
Tools:
- OCamlbuild now features a bin_annot tag to generate .cmt files.
(Jonathan Protzenko)
- OCamlbuild now features a strict_sequence tag to trigger the
strict-sequence option.
(Jonathan Protzenko)
- OCamlbuild now picks the non-core tools like ocamlfind and menhir from PATH
(Wojciech Meyer)
OCaml 4.00.1 (5 Oct 2012):
--------------------------
Bug fixes:
- MPR#5468: ocamlbuild should preserve order of parametric tags
OCaml 4.00.0 (26 Jul 2012):
---------------------------
Bug Fixes:
- MPR#5305: prevent ocamlbuild from complaining about links to _build/
- MPR#5356: ocamlbuild handling of 'predicates' for ocamlfind
- MPR#5435: ocamlbuild does not find .opt executables on Windows
- MPR#5503: error when ocamlbuild is passed an absolute path as build directory
- MPR#5531: Allow ocamlbuild to add ocamldoc flags through -docflag
- MPR#5604: fix permissions of files created by ocamlbuild itself
- MPR#5616: move ocamlbuild documentation to the reference manual
- MPR#5655: ocamlbuild doesn't pass cflags when building C stubs
OCaml 3.12.1 (4 Jul 2011):
--------------------------
Bug fixes:
- MPR#4380: ocamlbuild should not use tput on windows
- MPR#4552: ocamlbuild does not create symlinks when using '.itarget' file
- MPR#4967: ocamlbuild passes wrong switches to ocamldep through menhir
- MPR#5039: ocamlbuild should use '-linkpkg' only when linking programs
- MPR#5095: ocamlbuild ignores some tags when building bytecode objects
- MPR#5100: ocamlbuild always rebuilds a 'cmxs' file
- MPR#5103: build and install objinfo when building with ocamlbuild
- MPR#5165: ocamlbuild does not pass '-thread' option to ocamlfind
- MPR#5213: ocamlbuild should pass '-rectypes' to ocamldoc when needed
Feature wishes:
- MPR#5065: added '-ocamldoc' option to ocamlbuild
- MPR#5139: added possibility to add options to ocamlbuild
- ocamlbuild: allow dependency on file "_oasis"
Other changes:
- Changed default minor heap size from 32k to 256k words.
- Added new operation 'compare_ext' to custom blocks, called when
comparing a custom block value with an unboxed integer.
Objective Caml 3.12.0 (2 Aug 2010):
-----------------------------------
Ocamlbuild:
- Add support for native dynlink.
All tools:
- MPR#4857: add a -vnum option to display the version number and nothing else
Objective Caml 3.11.2 (20 Jan 2010):
------------------------------------
Bug fixes:
- MPR#4421: ocamlbuild uses wrong compiler for C files
- MPR#4710, MPR#4720: ocamlbuild does not use properly configuration information
- MPR#4856: ocamlbuild uses ocamlrun to execute a native plugin
- MPR#4873: ocamlbuild ignores "thread" tag when building a custom toplevel
- MPR#4890: ocamlbuild tries to use native plugin on bytecode-only arch
- MPR#4896: ocamlbuild should always pass -I to tools for external libraries
- MPR#4922: ocamlbuild recompiles too many files
- Various build problems with ocamlbuild under Windows with msvc
Feature wishes:
- MPR#4723: "clear_rules" function to empty the set of ocamlbuild rules
Objective Caml 3.11.1 (12 Jun 2009):
------------------------------------
- ocamlbuild: incorrectly using the compile-time value of $OCAMLLIB
Objective Caml 3.11.0 (03 Dec 2008):
------------------------------------
Objective Caml 3.10.2 (29 Feb 2008):
------------------------------------
Objective Caml 3.10.1 (11 Jan 2008):
------------------------------------
- MPR#4286 ocamlbuild: cannot compile under AIX and SunOS
- MPR#4304 ocamlbuild: handle -I correctly
- MPR#4313 ocamlbuild: -log and missing directories
- MPR#4327 ocamlbuild: make emacs look for .annot in _build directory
- MPR#4378 ocamlbuild: typo in plugin.ml
- MPR#4379 ocamlbuild: problem with plugins under Windows
- MPR#4387 ocamlbuild: build directory not used properly
- MPR#4410 ocamlbuild: problem with plugin and -build
Objective Caml 3.10.0 (18 May 2007):
------------------------------------
New tools:
- ocamlbuild: compilation manager for OCaml applications and libraries.
See draft documentation at http://gallium.inria.fr/~pouillar/
The content below corresponds to the old Changelog, before ocamlbuild was
included in the OCaml distribution. The version control history of those changes
is unfortunately lost, but the log below is kept for historical purposes.
(The use of a "* " bullet below does not indicate
a compatibility-breaking change, it was just the standard format for
this Changelog.)
-------------------------------------------------------------------------
2007-03-22 Nicolas Pouillard <[email protected]>
Allow to receive the build function in {custom,file}_rule.
* rule.ml,
* rule.mli,
* signatures.mli: Ditto.
* ocaml_specific.ml: Update.
* command.ml,
* command.mli: Add a function to get string and tags.
* ocamldep.ml,
* ocamldep.mli: Make tag based dependencies.
* ocaml_compiler.ml: Do the pack as one command to be sure running the
remove.
* test/test8/myocamlbuild.ml,
* test/good-output: Update.
2007-03-21 Nicolas Pouillard <[email protected]>
Fix the previous fix.
* ocaml_compiler.ml: Remove the empty file.
* test/good-output: Update.
2007-03-21 Nicolas Pouillard <[email protected]>
[native pack] use touch instead of mv and cmp.
* ocaml_compiler.ml: This version is will force ocamlopt to do the
right thing.
* test/good-output: Update.
2007-03-20 Nicolas Pouillard <[email protected]>
Two bugs, two fixes.
* ocaml_tools.ml: Add pp flags to interface inference.
* ocaml_specific.ml: Add a rule for packing with a cmi that already
exists.
* test/good-output: Update.
* Makefile: Change the default location.
2007-03-13 Nicolas Pouillard <[email protected]>
Fix a bug in expand_module.
* ocaml_utils.ml: Handle correctly pathnames instead of just basenames.
2007-03-13 Nicolas Pouillard <[email protected]>
Use sys_file_exists instead of Sys.file_exists.
* my_unix.ml: Since Sys.file_exists don't treat well captial letters.
* my_std.ml: Fix a bug.
* pathname.ml: Here is a an exception to the previous rule so, put a
comment.
2007-03-11 Nicolas Pouillard <[email protected]>
Fix the List.union order.
* my_std.ml: Fix and improve List.union.
* pathname.ml: Use it and fix merge_include_dirs.
* test/good-output: Update since the union order was wrong.
2007-03-11 Nicolas Pouillard <[email protected]>
Re fix menhir and include dirs.
* ocaml_tools.ml: Specifiy ocamlc and -I with --ocamlc.
2007-03-11 Nicolas Pouillard <[email protected]>
Fix a bug: Add include directories to menhir.
* ocaml_tools.ml: Ditto.
* my_std.ml,
* signatures.mli: Specification typo.
2007-03-07 Nicolas Pouillard <[email protected]>
Handle specially archives files during an import.
* shell.ml: Ditto.
2007-03-07 Nicolas Pouillard <[email protected]>
Use cp -p in copy_rule, and fix some typos in the manual.
* manual/manual.tex: Typos.
* rule.ml,
* rule.mli: Add cp_p and use it for copy_rule.
2007-03-05 Nicolas Pouillard <[email protected]>
Relaxe executor on exception condition.
Patch from Berke.
* executor.ml: Ignore Not_found and exceptional conditions.
* TODO: Add an entry (needs to better understand POSIX).
2007-03-04 Nicolas Pouillard <[email protected]>
Split where in bindir and libdir.
* ocamlbuild_where.mli: Ditto.
* ocaml_specific.ml: Update.
* options.ml: Use bindir.
* plugin.ml: Update.
* start.sh: Update.
2007-03-04 Nicolas Pouillard <[email protected]>
Virtual solvers for ocaml tools.
* options.ml: Setup virtual command solver for commands like ocamlc,
ocamlopt... This allow to have full pathname but let also failback to
classic search path.
* ocaml_compiler.ml: Add a tag to differentiate dependencies at link
time.
* ocamlbuild-presentation.rslide: Add an item as suggested by a friend.
2007-03-02 Nicolas Pouillard <[email protected]>
Same thing for the second link function.
* ocaml_compiler.ml: Ignore stdlib.
2007-03-02 Nicolas Pouillard <[email protected]>
Move the stdlib hack.
* ocaml_compiler.ml: Should works better.
2007-03-02 Nicolas Pouillard <[email protected]>
Little fix about library linking.
* ocaml_utils.ml: Avoid linking twice in some cases.
* ocaml_compiler.ml: Handle specially the OCaml stdlib.
2007-03-01 Nicolas Pouillard <[email protected]>
Remove a rec.
* glob.ml: Parse is not rec.
2007-03-01 Nicolas Pouillard <[email protected]>
true: traverse and FAQ.
* main.ml: Move the inital config upper to be loaded before the others
and hygiene.
* FAQ: New.
2007-02-28 Nicolas Pouillard <[email protected]>
Improve the glob dir handling.
* glob.ml: Extend the ast instead of parsing an extended string.
2007-02-28 Nicolas Pouillard <[email protected]>
Ensure that the whole boolean expression is only valid in the directory.
* glob.ml: Ditto.
2007-02-28 Nicolas Pouillard <[email protected]>
Put -g on link only for programs.
* ocaml_specific.ml: Ditto.
2007-02-26 Berke Durak <[email protected]>
Added disclaimer to default rules table.
* manual/manual.tex: .
2007-02-26 Nicolas Pouillard <[email protected]>
Add the -documentation option.
* main.ml: Implement it.
* flags.ml,
* flags.mli: Add get_flags.
* man/ocamlbuild.1: Update.
* signatures.mli,
* options.ml: Add show_documention.
* rule.ml,
* rule.mli: Add pretty_print.
2007-02-26 Nicolas Pouillard <[email protected]>
Add the -dont-catch-errors option.
* main.ml: Implement it.
* options.ml: Parse it.
* signatures.mli: Declare it.
* _tags: Use debug.
2007-02-26 Nicolas Pouillard <[email protected]>
Deal with the camlp4 library name.
* ocaml_specific.ml: Introduce use_old_camlp4 for the old one.
2007-02-26 Nicolas Pouillard <[email protected]>
Minor `ocaml_lib' improvments.
* signatures.mli: Declare and doc it.
* ocamlbuild_plugin.ml: Export it.
* ocaml_specific.ml,
* ocaml_specific.mli: Add some dirs to std libs.
Move the ocaml_lib implem to ...
* ocaml_utils.mli,
* ocaml_utils.ml: ... here. Improve it by adding the ~tag_name option.
* ocaml_compiler.ml: The hash now contains the tag.
* _tags: *.top use unix too.
2007-02-22 Berke Durak <[email protected]>
Should use Log.eprintf for show_tags.
* main.ml: .
2007-02-22 Nicolas Pouillard <[email protected]>
( & ), sanitize.sh, and the manual...
* signatures.mli: Add ( & ).
* hygiene.ml: Also clean the sanitize.sh script itself.
* my_std.ml: Add ( & ).
* manual/manual.tex: Some fixes and a section that I wrote but that's
needs reflexion about what solution we want to support.
2007-02-22 Berke Durak <[email protected]>
Implemented fixes suggested by Commissar Leroy.
* fda.ml: .
* hygiene.ml: .
* hygiene.mli: .
* man/ocamlbuild.1: .
* manual/manual.tex: .
* ocaml_specific.ml: .
* options.ml: .
* signatures.mli: .
2007-02-20 Nicolas Pouillard <[email protected]>
Add -show-tags.
* hygiene.ml: Rewrap the error message.
* main.ml: Do the show_tags job. Move one hook.
* ocaml_specific.ml: Add -g also in native code.
* options.ml,
* signatures.mli: Add the -show-tags option.
* tags.ml: Fix print.
* TODO: Add a done entry.
2007-02-16 Nicolas Pouillard <[email protected]>
Relaxing plural options to spaces.
* lexers.mli,
* lexers.mll: Add comma_or_blank_sep_strings.
* options.ml: Use it.
2007-02-16 Nicolas Pouillard <[email protected]>
Add a plugin example.
* manual/myocamlbuild.ml: New.
2007-02-16 Nicolas Pouillard <[email protected]>
Typos.
* ocamlbuild-presentation.rslide: .
* manual/trace.out: .
2007-02-16 Berke Durak <[email protected]>
Fixed a few typos and sentences.
* ocamlbuild-presentation.rslide: .
2007-02-15 Nicolas Pouillard <[email protected]>
Little changes...
* ocamlbuild-presentation.rslide: .
2007-02-15 Nicolas Pouillard <[email protected]>
Slides almost done...
* manual/trace.out: New. Of course you needed it.
* ocamlbuild-presentation.rslide: Ditto.
2007-02-15 Berke Durak <[email protected]>
Improving slides.
* ocamlbuild-presentation.rslide: .
2007-02-15 Nicolas Pouillard <[email protected]>
Slides...
* ocamlbuild-presentation.rslide: .
2007-02-15 Nicolas Pouillard <[email protected]>
Working on slides...
* ocamlbuild-presentation.rslide: .
2007-02-15 Nicolas Pouillard <[email protected]>
More slides...
* ocamlbuild-presentation.rslide: .
2007-02-12 Nicolas Pouillard <[email protected]>
Keep include dirs uniq.
* ocaml_compiler.ml: Ditto.
2007-02-12 Nicolas Pouillard <[email protected]>
Keep include dirs uniq.
* ocaml_compiler.ml: Ditto.
2007-02-12 Nicolas Pouillard <[email protected]>
Add ocamlmktop support.
* ocamlbuild.mltop: New.
* main.ml: Handle .top as binaries.
* ocaml_compiler.ml,
* ocaml_specific.ml,
* ocaml_compiler.mli: Add mktop functions and rules.
* options.ml,
* signatures.mli: Add an ocamlmktop option.
2007-02-09 Berke Durak <[email protected]>
Was attempting to link with threads.cmxa in byte mode.
* ocaml_specific.ml: .
2007-02-09 Berke Durak <[email protected]>
Talking of sterilize.sh.
* manual/manual.tex: .
2007-02-09 Berke Durak <[email protected]>
Rewrote some parts, filled the abstract, moved rantings to the appendix.
* manual/manual.tex: .
* .vcs: .
2007-02-08 Nicolas Pouillard <[email protected]>
Add manual/manual.hva.
* manual/manual.hva: New.
2007-02-08 Nicolas Pouillard <[email protected]>
Changes done with Luc.
* manual/manual.tex: .
* manual/Makefile: .
2007-02-08 Nicolas Pouillard <[email protected]>
Fix a bug found by Luc in hevea.
* ocaml_utils.ml,
* ocaml_utils.mli: Change keep_this_module into module_importance to
have a finer grain.
* ocaml_compiler.ml: Update to importance.
* ocamldep.ml,
* ocamldep.mli: We now try to also build stdlib modules but don't fail
if they don't exists.
* test/test5/stack.ml: New.
* test/test5/a.ml: A test case (from hevea).
* test/good-output: Update.
2007-02-08 Nicolas Pouillard <[email protected]>
Ocamldoc, extension:* tag ...
* ocaml_tools.mli,
* ocaml_tools.ml: The ocamldoc support now takes into account two modes
*d and -o.
* ocaml_specific.ml: Two more rules and many flags for some of the
standard behaviors.
* signatures.mli: Some comments.
* tools.ml: Add the extension:* tag.
* TODO: Update.
2007-02-08 Berke Durak <[email protected]>
Hygiene generates sterilize.sh.
* fda.ml: .
* fda.mli: .
* hygiene.ml: .
* hygiene.mli: .
* main.ml: .
* options.ml: .
* signatures.mli: .
2007-02-07 Berke Durak <[email protected]>
Updated section on ocamldoc.
* manual/manual.tex: .
2007-02-07 Nicolas Pouillard <[email protected]>
Some minor manual and slides changes.
* ocamlbuild-presentation.rslide,
* manual/manual.tex: Ditto.
2007-02-07 Nicolas Pouillard <[email protected]>
Make links for the documentation.
* main.ml: Handle doc.
* test/good-output: Update.
2007-02-07 Berke Durak <[email protected]>
Added manual section for ocamldoc.
* manual/manual.tex: .
* manual/Makefile: .
2007-02-07 Berke Durak <[email protected]>
Fixed truncated display problem.
* executor.ml: .
* .vcs: .
2007-02-07 Nicolas Pouillard <[email protected]>
Fix the bootstrap.
* start.sh: Swap lines.
* Makefile: -verbose.
2007-02-07 Berke Durak <[email protected]>
TODO + Executor.
* manual/manual.tex: .
* TODO: .
2007-02-06 Nicolas Pouillard <[email protected]>
Make -a more static, to avoid some complications.
* ocaml_utils.ml,
* ocaml_compiler.ml,
* ocaml_compiler.ml,
* ocaml_specific.ml: Ditto.
2007-02-06 Nicolas Pouillard <[email protected]>
A fix.
* ocaml_compiler.ml: Don't use these refs too early.
* ocamlbuild-presentation.rslide: .
2007-02-05 Nicolas Pouillard <[email protected]>
Plugin signature.
Somewhat a big patch, but that's just moving things around.
* signatures.mli: Add TAGS, OUTCOME, MISC, OPTIONS, ARCH and PLUGIN.
* ocamlbuild_plugin.mli: New.
* ocamlbuild_plugin.ml: Conform to the sig.
* command.ml,
* command.mli: Add a tags type.
* main.ml: Quit early if no targets.
* my_std.ml,
* my_std.mli: More things are in signatures.
* resource.ml,
* resource.mli: Remove the type t that was an Pathname.t alias.
* options.ml,
* options.mli: Add ext_lib, ext_obj, ext_dll.
* ocaml_compiler.ml: Update.
* ocaml_tools.ml: Update to Outcome.
* ocaml_specific.ml: Update.
* ocaml_utils.mli: Remove *ext_*.
* ocaml_arch.mli: Now in signatures.
* pathname.ml: Add readdir.
* slurp.ml: open Outcome.
* rule.ml,
* rule.mli,
* solver.ml,
* solver.mli: Update to Resource.t and Outcome.t.
* tags.mli: Now in Signatures.
* test/good-output: Update.
* test/test8/test.sh,
* test/test3/test.sh,
* test/test4/test.sh,
* test/test5/test.sh,
* test/test6/test.sh,
* test/test7/test.sh,
* test/test2/test.sh: Update to -verbose 0.
2007-02-05 Berke Durak <[email protected]>
Continuing doc.
* manual/manual.tex: .
* .: .
2007-02-05 Berke Durak <[email protected]>
Described display line.
* manual/manual.tex: .
2007-02-05 Berke Durak <[email protected]>
Renamed -debug as -verbose. Authorized spaces etc. in flags. Continuing documentation.
* lexers.mll: .
* manual/manual.tex: .
* options.ml: .
2007-02-05 Berke Durak <[email protected]>
Added man page.
* main.ml: .
* man: New.
* man/ocamlbuild.1: New.
* manual/manual.tex: .
* TODO: .
2007-02-05 Nicolas Pouillard <[email protected]>
Update start.sh.
* start.sh: Update.
2007-02-05 Nicolas Pouillard <[email protected]>
Typo s/Orignal/Original/g.
2007-02-05 Nicolas Pouillard <[email protected]>
Make signatures and std_signatures mliS.
* signatures.ml: Remove.
* std_signatures.ml: Remove.
* signatures.mli: New.
* std_signatures.mli: New.
* Makefile: Update.
* lexers.mll: Allow any prefix: for tags.
2007-02-04 Nicolas Pouillard <[email protected]>
The beginning of a presentation.
* ocamlbuild-presentation.rslide: New.
2007-02-04 Nicolas Pouillard <[email protected]>
Also add who is the original author of the file.
* ocamlbuild.ml,
* ocamlbuild_plugin.ml,
* ocamlbuildlight.ml,
* ocamlbuild_where.mli,
* ocamlbuild.mli,
* ocamlbuildlight.mli,
* bool.ml,
* bool.mli,
* configuration.ml,
* configuration.mli,
* command.ml,
* command.mli,
* display.ml,
* discard_printf.ml,
* display.mli,
* discard_printf.mli,
* executor.ml,
* executor.mli,
* flags.ml,
* fda.ml,
* flags.mli,
* fda.mli,
* glob.ml,
* glob_ast.ml,
* glob_ast.mli,
* glob.mli,
* glob_lexer.mli,
* glob_lexer.mll,
* hygiene.ml,
* hooks.ml,
* hygiene.mli,
* hooks.mli,
* log.ml,
* lexers.mli,
* log.mli,
* lexers.mll,
* my_unix_with_unix.ml,
* main.ml,
* my_unix.ml,
* my_std.ml,
* my_unix_with_unix.mli,
* my_std.mli,
* my_unix.mli,
* main.mli,
* ocaml_utils.ml,
* ocaml_tools.ml,
* ocaml_arch.ml,
* ocaml_specific.ml,
* ocaml_compiler.ml,
* ocaml_dependencies.ml,
* ocaml_utils.mli,
* ocaml_specific.mli,
* ocaml_dependencies.mli,
* ocaml_tools.mli,
* ocaml_arch.mli,
* ocaml_compiler.mli,
* options.ml,
* options.mli,
* ocamldep.ml,
* ocamldep.mli,
* plugin.ml,
* ppcache.ml,
* pathname.ml,
* ppcache.mli,
* plugin.mli,
* pathname.mli,
* resource.ml,
* resource.mli,
* rule.ml,
* rule.mli,
* report.ml,
* report.mli,