-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
4250 lines (2912 loc) · 148 KB
/
ChangeLog
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
"ChangeLog"
# $Id: ChangeLog,v 1.256 2011/05/03 19:20:32 fang Exp $
2017-02-23 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-64:
Date bump configure.ac, 20170223.
2016-12-15 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-62:
Merged hac_finfet branch.
2016-07-11 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-61:
prsim: allow mk_excl rings to contain one node (and ignore)
* HACKT-00-01-04-main-00-86-60:
Added random number generators to chpsim standard library.
2016-06-22 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-59:
Support Cadence incisive for VPI cosimulation.
2014-08-05 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-55:
Merged prsim-timing-backannot branch.
configure.ac: bump date
2014-08-05 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-54:
Merged clang34ification branch to address compatbility with
clang-3.4 and libc++ in std=c++11 mode (past)
config/cxx_STL.m4: macros updated to account for
libc++ differences like versioned std namespace.
Make.stddef, Make.global: move some universally useful
definitions from test/Make.test-tail
2013-11-15 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-53b:
config/hackt.m4, configure.ac: check CONFIG_SHELL for pipefail
2013-01-16 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-52c:
config/cc.m4: conditionally define AC_C_TYPEOF, which was
introduced in autoconf 2.60, to allow bootstraping with 2.59.
2012-12-05 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-52b:
config/hackt.m4: also search for tputs in libtinfo
needed for some linux distros: Ubuntu, Fedora
2012-10-18 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-51:
configure.ac: date bump, .h files have been renamed .hh (C++)
2012-10-11 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-50:
Merged clangification branch to master!
Merged prsim-engine-rewrite branch to master!
configure.ac: date bump
2012-08-08 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-41f:
configure.ac: detect whether or not Makefiles were bootstrapped
with automake version that produces .hh or .h from .yy(.cc).
2012-08-07 David Fang <[email protected]>
* HACKT-00-01-04-main-00-86-41e:
config/{hackt,guile}.m4, configure.ac: do NOT accumulate
libraries to link in the LIBS var, that's just sloppy.
Explicitly add them to the appropriate LIBADD and LDADD
automake variables.
2011-11-23 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-99:
configure.ac: date-bump
2011-06-25 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-78:
repository moved over to git, copy .cvsignore to .gitignore.
updated bootstrap and scripts/maintainerclobber for git use
bootstrap now propagates ACLOCAL_FLAGS to libltdl's
configure.ac and Makefile.am (assist in libtool2 migration)
Now pretty much require libtool 2.x (been around for years).
Updated configure.ac to substitute new LT_* variables
and pass them to Makefiles.
2011-05-03 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-70-merged-pr-01-20:
Merged branch to trunk -- introducing 'ipple' placer tool.
2011-04-19 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-64-pr-01-06:
configure.ac: check for sincos family of match functions,
which compute both sin() and cos() at the same time
for efficiency.
2011-04-12 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-64-pr-01-03:
configure.ac: check for abs(), fabs() family of cmath functions.
2011-03-31 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-61:
config/cxx_STL.m4: fix std::_Construct tests to try calling
the functions of interest instead of attempting to redefine.
Verified against g++-4.6.
2011-03-30 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-59:
config/cxx_STL.m4: new test for whether or not
std::istream properly fails when reading
a negative input to an unsigned value type.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39802
Fails for i386-gcc-3.4.6, oddly.
configure.ac: call FANG_CXX_ISTREAM_NEGATIVE_UNSIGNED
use this new test result in util/strings.tcc:string_to_num.
2011-03-22 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-53-merged-portdir-01-05:
Branch merge. Checking channel/datatype connectivity.
2011-02-28 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-50:
config/guile.m4: added support for guile-2.0.
modified detection of guile lib basename,
and scm_boot_guile symbols.
detect scm_t_subr typedef.
Many guile API symbol checks fail b/c they
are now defined to macros, but not to fret,
they still work, as macro definitions are now
detected and used in src/util/guile_STL.h.
configure.ac: now specify AC_CONFIG_MACRO_DIR([config])
to where our m4 macros live. Wish they were in
config/m4, oh well.
2011-02-13 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-49:
config/lexyacc.m4: added a test to detect the initial value
of yy_init in the generated skeleton, and pass to our
machinery that re-factor lexer boilerplate code.
This finally allows our lex files to work with
newer versions of flex (>= 2.5.33).
2011-02-08 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-46:
config/lexyacc.m4: more general check for yacc skeleton version.
config/cxx_STL.m4: bits/stl_construct.h checks include
<iterator> for iterator_traits.
Various source fixes to try to appease clang++.
2010-09-20 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-27-merged--string-01-04:
Branch merge, introducing string parameters,
string manipulations, compile-time functions.
2010-09-15 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-23-string-01-04:
configure.ac, config/cxx.m4: check for typeof, __typeof__,
and decltype operators.
2010-09-14 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-23-string-01-03:
Make.stddef: useful sed command for substituting some directory
variables $(builddir) and $(top_builddir)
2010-09-01 David Fang <[email protected]>
* HACKT-00-01-04-main-00-84-23:
Portability fixes, tested on powerpc-apple-darwin8
against gcc-3.3 and gcc-4.0.
configure.ac: don't AC_CHECK_PROG echo before LT_INIT
date bumped.
config/cc.m4: check whether uint32_t and size_t are identical
also compare against uint32_t and uint64_t
result used in util/numeric/inttype_traits.h
config/cxx_STL.m4: check for std::_Construct copy-ctor
see also src/ChangeLog, lib/ChangeLog
2010-04-09 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-77:
configure.ac: generate src/scripts/hacalloc
2010-04-06 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-73:
configure.ac: date bump
General post-branch-merge clean-up of sources and tests.
2010-04-02 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-69-merged-scalable-01-33:
Merge of -scalable-01 branch, major revisions to make middle and
back ends of HACKT more memory scalable.
2010-03-10 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-68:
Mostly portability fixes.
configure.ac: version bump, reject mawk, not just warn.
Error out if lex/yacc missing at summary.
config/hackt.m4: checking for tputs, force AC_LANG C
Re-validated on ubuntu vs. gcc-4.4.1, many thanks to
Ilya Konstantinovich Ganusov for helping test!
2010-02-09 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-53-scalable-01-16:
Make.stddef: provide LN_SF as ln -s -f
2010-02-02 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-66:
configure.ac: generate src/hac-cpp wrapper script
2010-01-11 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-58+:
configure.ac: libtool macros depending on m4_ifdef([LTINIT])
Make.global: standardized distclean-depend recursive target
2010-01-05 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-58:
configure.ac: bootstrap with libtool-2.x,
enable use of installed libltdl,
date bump
2009-11-19 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-53:
configure.ac: date bump, release checked, distchecked
2009-10-22 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-41:
configure.ac: generate src/scripts/hackt-env
2009-10-02 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-32:
Fixed test/Make.test-guile, use LTDL_LIBRARY_PATH.
configure.ac: date bump
2009-10-01 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-31-merged-supply-01-09:
Branch merge of the supply-01 branch.
2009-09-27 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-30:
Build system maintainence, testing on i686-apple-darwin10.
bootstrap: re-wrote portions to order calls around libtool
configure.ac: bootstrap with libtool-2.x! old macros commented out.
May need to switch back and forth... :S
removed BUILD_DARWIN test, no longer patch Makefile[.in]'s
am__remove_distdir script.
scripts/maintainerclobber: re-wrote to wipe files in each
directory based on .cvsignore files. (easier!)
test/Make.test-...: see test/ChangeLog, basically fixed all
plug-in dependent tests to use libtool --mode=execute wrapper.
Much cleaned up use of Makefile variables.
Not regression test clean on i686-apple-darwin10!
2009-09-14 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-29-merged-netlist-02-13:
Branch merge of hacknet features, batch 2.
configure.ac: date bump
2009-08-28 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-28-merged-netlist-01-23:
Branch merge of -netlist-01, introducing hacknet!
configure.ac: date bump
2009-08-27 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-27-netlist-01-22:
configure.ac: generate dox/net/Makefile,
earlier on branch, also added test/net/Makefile
2009-07-13 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-26:
configure.ac: date bump
2009-05-28 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-20:
configure.ac: date bump
2009-04-29 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-17:
Ported to g++-4.4.
config/cxx_STL.m4: check for copy_if
configure.ac: use it
2009-03-08 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-06-merged-footprint-02-05:
Branch merge of footprint rework.
2009-02-22 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-02:
configure.ac: generate src/{hacguile,hacchpsimguile}
installed wrapper scripts, replacing binaries.
config/guile.m4: now use and allow override of GUILE
variable (--with-guile), and find GUILE_PATH as well.
Former libguile optional dependency is now replaced
with the guile (binary) executable because
HAC facilities are independently loadable plug-ins now.
2009-02-19 David Fang <[email protected]>
* HACKT-00-01-04-main-00-83-01:
config/rl_el.m4: also check for readline/readline.h for editline,
check for symbols rl_completion_matches and completion_matches.
configure.ac: date bump
2009-01-31 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-96-merged-prsim-13-03:
Branch merge: node/rule attributes for hacprsim.
configure.ac: date bump
2009-01-31 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-92-merged-prsim-12-09:
Merged prsim tracing branch.
configure.ac: date bump
2008-12-04 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-71+:
configure.ac: check for tr
Make.stddef: use tr to convert spaces to newlines
fixed a few test dependencies
2008-12-01 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-70:
config/lexyacc.m4, README: warn against flex 2.5.35 :(
2008-11-27 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-66:
config/hackt.m4: added --enable-interactive-tests option.
2008-11-26 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-65-merged-gprsim-11-05:
Branch merge: improvements of prsim error handling policy.
2008-11-22 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-63-merged-gcc43-01:
Merged gcc43 branch, which requires -Wno-conversion.
Also works in std=c++0x mode!
2008-11-18 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-61-gcc43-01:
First crack at patching for gcc-4.3. (does not compile yet)
config/cxx_STL.m4: updated standard header checks to account
for -std=c++0x.
config/guile.m4: -include cstdio in header check.
2008-11-11 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-54:
configure.ac: default AC_DISABLE_STATIC, AC_ENABLE_SHARED.
config/rl_el.m4: removed warning about GPL incompatbility,
b/c this project is now officially GPL, thanks to Cornell.
Updated NEWS, for once.
2008-11-05 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-50-merged-prsim-10-20:
Major branch merge: prsim scalability rework.
2008-06-03 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-24:
Long time no distcheck, passes after minor dist fixes.
Make available as minor release.
configure.ac: date bump for release
2008-03-20 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-09-merged-parser-06-07:
Branch merge: improved lexer/parser configury checking.
Project-wide Makefiles use printf over echo -n for portability
2008-03-17 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-07-merged-ACT-03-59:
Branch merge.
2008-03-15 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-05-parser-06-07:
Project-wide cleanup of "echo -n", replaced with equivalent
'printf' for POSIX standards-compliant behavior.
echo is not required to accept options.
config/lexyacc.m4: improved yacc/bison traits checking,
no longer based on executable name, but generator output
which is much more reliable.
2008-03-11 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-05-parser-06-06:
config/lexyacc.m4: detect and warn against known bad flex.
2008-03-06 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-02-ACT-03-56:
Make.stddef, Make.global: added CLEANDIRS variable, cleandirs target
Revised check.log rule to catch more specific errors in log.
2008-03-02 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-05-parser-06-02:
config/lexyacc.m4: added parser property tests.
2008-02-28 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-05:
configure.ac: AM_CONDITIONAL SRCDIR_BUILD
2008-02-24 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-02-ACT-03-43:
config/hackt.m4: VPI check now checks for 'vcs' and provide
automake conditional HAVE_VCS.
configure.ac: AC_OUTPUT(test/prsim/vpi/Makefile)
2008-02-18 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-04:
configure.ac: date bump
2008-01-22 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-02-ACT-03-15:
config/cxx_STL.m4: check for <set> <map> _Rb_tree implementation.
configure.ac: use it
2008-01-16 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-02-ACT-03-02-merged-prsim-08-29:
Child branch merge.
2007-12-18 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-02-ACT-03-01-prsim-08-09:
config/hackt.m4: check for vpi_user.h support for prsim.
configure.ac: use it
2007-11-26 David Fang <[email protected]>
* HACKT-00-01-04-main-00-82-00-merged-router-01-12:
Branch merge of chpsim bitrouter case study.
2007-11-01 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-89:
config/lexyacc.m4:
detect flex lexer characteristic with a few link tests
2007-10-31 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-88:
configure.ac: call all AC_CHECK_FUNCS together (compressed)
A bunch of cygwin-support:
check for rand48 function family in strict C++ mode,
check for additional libc functions fdopen, popen.
config/cc.m4: check for __FILE for foward decl,
additional check for declaration conflict
new tests for non-ansi libc functions rand48 family
config/cxx_STL.m4: un-hardcode /dev/std{in,out,err} and take
result from other test in ...
config/os.m4: check for standard file descriptors,
which are horked on cygwin
config/guile.m4: correct the AM_CONDITIONAL HAVE_LIBGUILE test
2007-10-21 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-85-router-01-09:
configure.ac: patch Makefile's tar command to use POSIX
compatibility mode to support path/names longer than 99.
2007-09-28 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-78:
configure.ac, config/cc.m4: check whether or not
unsigned long is equivalent to uint32_t.
2007-09-26 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-76:
configure.ac: WARN if mawk is found and used (it sucks),
AM_CONDITIONAL and AC_DEFINE HAVE_X11.
config/guile.m4: remove unused test AC_CHECK_FUNCS(scm_boot_guile)
Note: this snapshot validated against autoconf-2.61, automake-1.10.
2007-08-29 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-66:
configure.ac, config/cc.m4:
Check for non-conforming type equivalence between
size_t and unsigned long, for workarounds.
2007-08-18 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-57:
Critical patch needed for Darwin.
configure.ac: AC_SUBST LTDL_SHLIBPATH_VAR and LTDL_OBJDIR
so Makefile can construct environment to pass during tests.
2007-08-16 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-53:
Remove obsolete references to configured test scripts.
2007-08-15 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-52:
Check for 'info' and AM_CONDITIONAL HAVE_INFO for installcheck.
* HACKT-00-01-04-main-00-81-50:
Make.stddef: define EXTRACT_TEXINFO_IN_SRCDIR invokation of
extract_texinfo.awk suitable in scripts that cd $(srcdir) first
configure.ac: AC_CONFIG_COMMANDS to make auxiliary build directories
2007-08-14 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-49-merged-chpsim-07-08:
Merged -chpsim-07 branch.
2007-08-14 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-48-merged-parser-05-03:
Merged -parser-05 branch.
2007-08-12 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-46-chpsim-07-07:
configure.ac: make test/chpsim/libinstalltest/Makefile
* HACKT-00-01-04-main-00-81-46-chpsim-07-06:
configure.ac: replace docs/chpsim/figs/build_path with .dirstamp
hackt-config.in: use datarootdir
2007-08-11 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-46-chpsim-07-05:
Added scripts/extract_texinfo.awk. Guess what it does.
Make.stddef: use extract_texinfo.awk
2007-08-08 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-45:
Make.global: more echo-* targets listed under help.
* HACKT-00-01-04-main-00-81-44:
Make.stddef: directory variables moved to ...
installdirs.mk: some additional installation subdirectories,
intended as post-configure variables, for convenience.
Makefile.am: distribute installdirs.mk
2007-07-31 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-41-merged-chpsim-06-26:
Branch merge of chpsim-06 branch: chpsim run-time function support.
Also includes some system-wide additions:
addition of libltdl fr plug-in support
improved support for installcheck targets
Updated bootstrap to support libltdl regeneration.
pkg/*.info: fink packaging deps updated (not tested)
2007-07-30 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39-chpsim-06-25:
Make.stddef: define examplesdir for installing examples.
* HACKT-00-01-04-main-00-81-39-chpsim-06-23:
Make.stddef: define docdir, pdfdir, psdir, htmldir for installation.
2007-07-29 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39-chpsim-06-22:
README.CVS: now list texinfo as a bootstrapper requirement.
README.maintainer: more backport tag conventions.
configure.ac, config/documentation.m4: check for ps2epsi
More documentation updates involving Texinfo in dox/ChangeLog.
2007-07-28 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39-chpsim-06-21:
README.CVS: note known bad version of libtool's libltdl (1.5.18) :S
bootstrap: remove libltdl/{Makefile.in,configure,aclocal.m4} to
force them to be regenerated by this bootstrap and autoreconf,
to automatically handle version mismatches in auto{make,conf}.
2007-07-27 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39-chpsim-06-19:
Makefile.am: revert adding of ACLOCAL_AMFLAGS and add a configurable
AC_ARG_VAR for additional ACLOCAL_FLAGS to be appended.
* HACKT-00-01-04-main-00-81-39-chpsim-06-17:
config/hackt.m4, configure.ac: added macros to conditionally
disable tests for faster testing turn-around.
For maintainer use only, please. :)
All Makefile.am's updated using AM_CONDITIONALs.
* HACKT-00-01-04-main-00-81-39-chpsim-06-16:
Makefile.am: installcheck bin_SCRIPTS.
configure.ac: produce test/chpsim/installtest/Makefile from .in
hackt-config.in: @datarootdir@ -> @datadir@ for AM-1.9 compat.
added --help, --datadir, --pkgdatadir options.
2007-07-26 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39-chpsim-06-15:
configure.ac: warn if --disable-shared given, because now
ltdl module opening features depend on shared libraries.
Consequence: handful of test cases will fail in test/chpsim.
Configure-generate an 'installcheck.mk' from .in,
to be used in install-time tests.
2007-07-25 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39-chpsim-06-11:
Makefile.am: install a copy of configured libtool as hackt-libtool
2007-07-23 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39-chpsim-06-06:
hackt-config.in: prepended cflags with -DINSTALLED_HACKT
so compiling against installed headers can be different.
2007-07-19 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39-chpsim-06-02:
Added initial libtool's libltdl support.
configure.ac, and libltdl/ subdir.
2007-07-18 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-40-merged-template-02-28:
Branch merge of -template-02 (relaxed template parameters).
2007-07-06 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-39:
configure.ac, config/hackt.m4: libtool script now invoked
non-silently by default, in anticipation of ltdl use.
2007-06-18 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-38:
config/documentation.m4: support older fig2dev
config/guile.m4: strip out guile-snarf, guile-tools (unused)
2007-06-15 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-35:
README: noted known versions of yacc skeletons,
known bad version of mawk.
configure.ac, config/cxx.m4: detect inconsistency between long long
configure test and strict dialect conformance.
Automatically add -Wno-long-long when appropriate.
2007-06-15 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-34-merged-LPxx-04:
Branch merge. Support for testing on non LP32 platforms.
2007-06-14 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-32-LPxx-04:
configure.ac: removed src/util/test/test-expect.sh[.in]
2007-06-13 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-33:
configure.ac: AC_CHECK_SIZEOF tests all wrapped in AC_LANG C++ now,
so CXXFLAGS need not be copied to CFLAGS for correctness.
* HACKT-00-01-04-main-00-81-32:
configure.ac: Added AM_CONDITIONAL ABI_ILP32
2007-06-09 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-29:
Added support for guile-1.6's API!
config/guile.m4: a ton more API function checks.
README: downgraded guile version requirement
Added scripts/bootstrap.freebsd.
2007-06-08 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-28:
Added lib/mk/Makefile.am, installed makefile templates,
now generated to reduce maintainence replication.
2007-06-04 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-25:
configure.ac: date bump, added summary at end
pkg/*.info: updates of fink packages
2007-05-03 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-22-merged-chpsim-04-34:
chpsim-04 branch merge.
2007-05-03 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-21:
config/guile.m4: eval and AC_SUBST(GUILE_CONFIG_VERSION)
now report this in build reports.
configure.ac: date bump
2007-04-20 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-15-scm-01-19-merged-scm-01-37:
scm-01 branch merge.
2007-03-26 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-15-scm-01-14:
Now install bin/init_hackt.[c]sh scripts, subst'd by configure.
Setup scripts establish some environment variables for user.
config/guile.m4: override-able --with-guile-snarf AR_ARG_WITH
for systems that install guile under some name-transformation.
Same with --with-guile-tools.
2007-03-25 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-15-scm-01-13:
Added hackt-config.in as an installed configure flag script.
2007-03-18 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-14:
config/guile.m4: fixed conditional AM_CONDITIONAL to unconditional.
README, README.CVS: additional instructions.
Added pkg/README, pkg/hackt-{cvs,dist}-deps.info fink packages.
Listed them in EXTRA_DIST of Makefile.am.
2007-03-16 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-11:
AC_CHECK_FUNC(atexit), because we need it for guile-ism.
config/guile.m4: also check for scm_init_guile()
2007-03-13 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-07:
config/guile.m4: restructured configure tests more,
now AM_CONDITIONAL(HAVE_LIBGUILE) requires correct API (1.8)
AC_CHECK_FUNC on true symbol function, not macro function.
Now allow user to pass specific guile-config as
--with-guile-config=... for version selection.
configure.ac: generate test/guile/Makefile
2007-03-12 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-05:
config/guile.m4: more specific function tests.
README: we now require guile-1.8 for now, until we re-write
wrappers for 1.6's missing interfaces.
* HACKT-00-01-04-main-00-81-04:
config/builtin_funcs.m4: added long long tests and parity tests.
2007-03-11 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81-02-merged-shlib-01-07:
installed-scripts now replaced with dynamically linked executables.
2007-03-08 David Fang <[email protected]>
* HACKT-00-01-04-main-00-81:
Dropping swig as a bootstrap requirement, maintaining
guile-scm wrappers by hand.
2007-03-02 David Fang <[email protected]>
* HACKT-00-01-04-main-00-80-92:
Date bump after minor patches.
2007-03-01 David Fang <[email protected]>
* HACKT-00-01-04-main-00-80-91:
config/cxx_STL.m4: fstream tests assume OK if cross compiling.
2007-02-26 David Fang <[email protected]>
* HACKT-00-01-04-main-00-80-87-merged-chpsim-03-10:
Branch merge.
2007-02-22 David Fang <[email protected]>
* HACKT-00-01-04-main-00-80-86:
config/cxx_STL.m4: check whether SGI extension bitset member
functions are actually *linkable* using g++.
Extends tests to compile and link (separately)
2007-02-21 David Fang <[email protected]>
* HACKT-00-01-04-main-00-80-83:
configure.ac: new autoconf macro tests for SGI extensions
in std::bitset, tests added to config/cxx_STL.m4.
config/builtin_funcs.m4: testing compiler's builtin functions
such as popcount (mostly bit-operations)
2007-02-13 David Fang <[email protected]>
* HACKT-00-01-04-main-00-80-81:
Executables are now built using dynamic shared library!
2007-02-08 David Fang <[email protected]>
* HACKT-00-01-04-main-00-80-79:
Makefile.am: distclean Makefile.orig if produced by patching Makefile.
README.CVS: notes about updates and patch creation.
2007-02-05 David Fang <[email protected]>
* HACKT-00-01-04-main-00-80-72-merged-chpsim-02-19:
Branch merge.