-
Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathHistory
2308 lines (1789 loc) · 93 KB
/
History
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
# Category config History
See `CONTRIBUTING.rst` for details of **required** info/format for each entry,
which **must** added in reverse chronological order (newest at the top).
It must **not** be used as a substitute for writing good git commit messages!
--------------------------------------------------------------------------------
## 2023-11-13 Gabriele Cosmo (config-V11-01-03)
- Updated system scripts for Qt settings: removed Qt4 and added Qt6.
## 2023-05-10 Ben Morgan (config-V11-01-02)
- Updated config scripts for split of G4persistency library.
## 2023-04-02 Ben Morgan (config-V11-01-01)
- No longer link to QtPrintSupport, which is not used in the toolkit.
## 2023-02-01 Ben Morgan (config-V11-01-00)
- Updated UI/interfaces include paths to reflect new organization.
## 2022-11-02 Gabriele Cosmo (config-V11-00-12)
- Silenced ld warnings in Darwin setups.
## 2022-10-31 Gabriele Cosmo (config-V11-00-11)
- Corrected buffer size in liblist.c tool.
## 2022-10-25 Guy Barrand (config-V11-00-10)
- G4VIS_BUILD.gmk, G4VIS_USE.gmk: handle vis/ToolsSG by default.
## 2022-10-21 Gunter Folger (config-V11-00-09)
- Add --gcc-toolchain option for CXX and CC in Linux-clang.
- Removed protecton in definition of CXX and CC
## 2022-10-19 Gabriele Cosmo (config-V11-00-08)
- Protected definition of CXX and CC in Linux-clang.
## 2022-10-12 Gabriele Cosmo (config-V11-00-07)
- Replaced use of deprecated sprintf() with snprintf() in liblist.c tool.
## 2022-10-07 Gabriele Cosmo (config-V11-00-06)
- Added "-diag-disable=10441" option to Linux-icc, to disable Intel/icc
compiler deprecation message.
## 2022-08-30 Gabriele Cosmo (config-V11-00-05)
- Fixed gcc compilation warnings on liblist.c tool.
## 2022-07-14 Ben Morgan (config-V11-00-04)
- Remove obsolete G4gl2ps category and library from build
## 2022-03-25 Ben Morgan (config-V11-00-03)
- Retire G4tasking category and library from build
## 2022-02-06 Gabriele Cosmo (config-V11-00-02)
- Updated compilation flags for Intel icc/icx compilers.
- Enable -pthread only for MT builds in other configurations.
## 2022-02-04 Gabriele Cosmo (config-V11-00-01)
- Added Linux-icx.gmk configuration for Intel OneAPI DPC++ compiler.
## 2021-12-10 Ben Morgan (config-V11-00-00)
- Change to new Markdown History format
---
# History entries prior to 11.0
4th November 2021 Gabriele Cosmo (config-V10-07-09)
- Updated default Qt5 include paths for Linux targets.
9th October 2021 Ben Morgan (config-V10-07-08)
- Remove no longer needed link to libXi
- Check for existence of lib64 directory for Xerces-C
- Add 'c' flag to ar to suppress diagnostics going to stderr
25th September 2021 Ben Morgan (config-V10-07-07)
- Remove obsolete GAG/Gain config
26th August 2021 Ben Morgan (config-V10-07-06)
- Remove obsolete network VRML config
- Remove obsolete network FukuiRenderer config
1st June 2021 Gabriele Cosmo (config-V10-07-05)
- Moved default to c++17 Standard.
15th April 2021 Gabriele Cosmo (config-V10-07-04)
- binmake.gmk: removed include paths to "hadronic/models/management" and
"hadronic/models/util" modules, now retired.
17th March 2021 Gabriele Cosmo (config-V10-07-03)
- binmake.gmk: removed include path to "rpg" hadronic model, now retired.
12th March 2021 Gabriele Cosmo (config-V10-07-02)
- Added comctl32.lib to UI32LIBS for WIN32-VC configuration and fixed name
of internal PTL module library for DLL build.
18th December 2020 Ben Morgan (config-V10-07-01)
- Update compiler/link flags for migration of g4tools to externals
category.
11th December 2020 Gabriele Cosmo (config-V10-07-00)
- Updated Qt5 settings in Linux targets.
22nd October 2020 Gabriele Cosmo (config-V10-06-07)
- Added configuration for Qt3D visualization driver.
22nd June 2020 Gabriele Cosmo (config-V10-06-06)
- Added -pthread to all builds in Linux targets.
18th June 2020 Gabriele Cosmo (config-V10-06-05)
- Added setup for building and configuring new externals/ptl
and tasking modules. External installation of PTL can be enabled
by defining the installation through the environment variable PTL_BASE_DIR.
25th May 2020 Gabriele Cosmo (config-V10-06-04)
- Added missing settings in G4UI_BUILD.gmk script for OIQt and use of UI.
18th May 2020 Gabriele Cosmo (config-V10-06-03)
- Removed deprecated G4USE_STD11 flag settings.
30th Apr 2020 Gabriele Cosmo (config-V10-06-02)
- Corrected setup for use of OpenInventor (Coin).
12th Feb 2020 Gabriele Cosmo (config-V10-06-01)
- Fixed and updated setup for DLL builds on Windows.
12th Dec 2019 Gabriele Cosmo (config-V10-06-00)
- Removed dependency on GLU for all configurations, as no longer necessary.
20th Nov 2019 Gabriele Cosmo (config-V10-05-08)
- interactivity.gmk: added -DQT_NO_DEPRECATED_WARNINGS to Qt compilation
settings, to silence warnings from Qt for use of deprecated features.
22nd Oct 2019 Gabriele Cosmo (config-V10-05-07)
- Force use of c++17 in WIN32 targets.
9th Oct 2019 Gabriele Cosmo (config-V10-05-06)
- Corrected default path for XM in Darwin targets.
13th Sep 2019 Ivana Hrivnacova (config-V10-05-05)
- Added new analysis/factory subdirectory in includes in binmake.gmk;
removed analysis/parameters which does not exist anymore.
4th Sep 2019 Gabriele Cosmo (config-V10-05-04)
- Fixed compilation warning on gcc-9.2 for liblist.c; replaced use
of strncat() with strcat().
13th Aug 2019 Gabriele Cosmo (config-V10-05-03)
- geomconf.gmk: added VecGeom wrappers flags for G4EllipticalTube,
G4EllipticalCone and G4Ellipsoid.
28th Jun 2019 Gabriele Cosmo (config-V10-05-02)
- Fixed default paths for Linux architectures.
16th May 2019 Gabriele Cosmo (config-V10-05-01)
- Hard-code Qt version through QT_VERSION flag.
Corrected Qt5 setup for Linux-g++ and Linux-clang.
26th April 2019 Ben Morgan (config-V10-05-00)
- Add -DG4GMAKE to CPPFLAGS to indicate use, or not, of Geant4Make.
This is to protect use or not of the new G4GlobalConfig header
introduced in cmake-V10-05-02.
28th September 2018 Gabriele Cosmo (config-V10-04-09)
- Added -DGL_SILENCE_DEPRECATION to CPPFLAGS to Darwin setups to silence
deprecation compilation warnings on MacOS 10.14 Mojave.
18th September 2018 Gabriele Cosmo (config-V10-04-08)
- Cleanup settings for GL in Darwin-clang.gmk and Darwin-g++.gmk.
12th September 2018 Gabriele Cosmo (config-V10-04-07)
- Withdraw changes of last tag for Linux-g++ and corrected use of
G4RUNPATHOPTION in binmake.gmk for installed kernel libraries.
7th September 2018 Gabriele Cosmo (config-V10-04-06)
- Fixed setting of G4RUNPATHOPTION in Darwin/Linux-clang/g++ and binmake.cmk.
Addressing problem report #2086.
12th April 2018 Gabriele Cosmo (config-V10-04-05)
- WIN32-VC.gmk: updated obsolete configuration for Qt5.
20th March 2018 Gabriele Cosmo (config-V10-04-04)
- architecture.gmk: corrected default path for external expat and zlib.
19th March 2018 Gabriele Cosmo (config-V10-04-03)
- architecture.gmk: corrected settings for external expat and zlib.
9th March 2018 Gabriele Cosmo (config-V10-04-02)
- Darwing-clang.gmk: removed -pthread and -fPIC compilation options.
14th February 2018 Gabriele Cosmo (config-V10-04-01)
- Disable "-Wl,-force_load" global linker flag for static libraries in macro
Darwing-clang.gmk.
11th January 2018 Gabriele Cosmo (config-V10-04-00)
- geomconf.gmk: added G4GEOM_USE_UTESSELLATEDSOLID flag to enable VecGeom
wrapper for G4TessellatedSolid.
16th November 2017 Gabriele Cosmo (config-V10-03-07)
- architecture.gmk: removed references to old USolids library; just use VecGeom.
16th October 2017 Gabriele Cosmo (config-V10-03-06)
- geomconf.gmk: added G4GEOM_USE_UHYPE flag to enable VecGeom wrapper for G4Hype.
10th October 2017 Gabriele Cosmo (config-V10-03-05)
- binmake.gmk: added hadronic/models/gamma_nuclear module to include paths.
11th July 2017 Gabriele Cosmo (config-V10-03-04)
- geomconf.gmk: updated flags for Scalar build of VecGeom.
11th July 2017 Gabriele Cosmo (config-V10-03-03)
- geomconf.gmk: added selector for G4GEOM_USE_UPARA flag, to enable
wrapping of G4Para for USolids/VecGeom.
Coworks with tag geom-csg-V10-03-29.
10th July 2017 Gabriele Cosmo (config-V10-03-02)
- geomconf.gmk: added selector for G4GEOM_USE_UCTUBS flag, to enable
wrapping of G4CutTubs for USolids/VecGeom.
Coworks with tag geom-csg-V10-03-28.
20th April 2017 Gabriele Cosmo (config-V10-03-01)
- binmake-gmk: added 'processses/solidstate' module include path.
14th March 2017 Gabriele Cosmo (config-V10-03-00)
- Corrected order of linkage in binmake.gmk for analysis global library.
18th November 2016 Gunter Folger (config-V10-02-07)
- add include for analysis/accumulables
- revert change forcing load of libraries
9th November 2016 Gunter Folger (config-V10-02-06) *tag REJECTED*
- Force loading of symbols for physics_lists/constructor and builders
libraries in granular mode for static libs
17th October 2016 Gabriele Cosmo (config-V10-02-05)
- Changed default optimisation settings to -O3 for g++, clang and icc.
- Added -fno-trapping-math -ftree-vectorize -fno-math-errno to g++ and
clang settings.
- Better factorise -std options in scripts.
8th June 2016 Gunter Folger (config-V10-02-04)
- Reverted previous change for G4{,NO}STATIC_MODE
8th June 2016 Gunter Folger (config-V10-02-03)
- Deleted G4STATIC_MODE and G4NOSTATIC_MODE options in sys/Darwin*
and sys/linux*. This is not a complete removal of the option yet...
25th April 2016 Gabriele Cosmo (config-V10-02-02)
- Added Linux-clang.gmk script for use of clang compiler on Linux system.
14th April 2016 Gabriele Cosmo (config-V10-02-01)
- Added flags for partial use of USolids/VecGeom types.
5th February 2016 Gabriele Cosmo (config-V10-02-00)
- Added settings for 14 and 17 C++ standards in platform specific scripts.
24th November 2015 Gabriele Cosmo (config-V10-01-08)
- binmake.gmk: added "analysis/parameters/include" to INCFLAGS.
6th November 2015 Gabriele Cosmo (config-V10-01-07)
- Removed module 'neutron_hp', now merged in 'particle_hp'.
Updated binmake.gmk script.
7th October 2015 Gabriele Cosmo (config-V10-01-06)
- Use USolids/VecGeom as external package installation only.
If $G4GEOM_USE_USOLIDS is set, it is mandatory setting the path to
the external USolids/VecGeom installation with $USOLIDS_BASE_DIR.
6th October 2015 Gabriele Cosmo (config-V10-01-05)
- Updated X11 ssettings in Darwin-clang.gmk and Darwin-g++.gmk for new
MacOSX El Capitan; replaced X11R6 with X11.
31st August 2015 Gabriele Cosmo (config-V10-01-04)
- Added G4Torus and G4Paraboloid for USolids/VecGeom use as external library.
12th August 2015 Gabriele Cosmo (config-V10-01-03)
- Linux-icc.gmk: removed -gcc-sys option, no longer necessary.
Removed -i-dynamic from LDFLAGS, no longer supported.
Removed -lstdc++ from LOADLIBS, no longer necessary.
7th August 2015 Gabriele Cosmo (config-V10-01-02)
- Replaced -no-gcc with -gcc-sys in Linux-icc.gmk, to allow for GNU macros
to be defined when compiling system headers.
6th August 2015 Gabriele Cosmo (config-V10-01-01)
- Set C++11 as default build option for gcc, icc and clang.
28th May 2015 Gabriele Cosmo (config-V10-01-00)
- Updated CPPFLAGS for Linux-icc and WIN32-g++ configurations.
29th October 2014 Gabriele Cosmo (config-V10-00-11/10)
- Moved geometry/solids/usolids module to externals.
Adapted scripts for optional external USolids library build.
- Withdrawn changes made to Darwin-clang.gmk in previous tag.
11th October 2014 Michael Kelsey (config-V10-00-09)
- Darwin-clang.gmk: added references to core G4 library list for linking
shared libraries, needed for applications with G4EXLIB.
17th September 2014 Gabriele Cosmo (config-V10-00-08)
- Added flags in geomconf.gmk for added USolids shapes UExtrudedSolid,
UGenericTrap and UTrap.
25th July 2014 Gabriele Cosmo (config-V10-00-07)
- Added flag for C++11 also to CPPFLAGS in Linus-g++.gmk when G4USE_STD11
is set.
1st July 2014 Gabriele Cosmo (config-V10-00-06)
- Added 'particle_hp' module to binmake.gmk.
8th April 2014 Gabriele Cosmo (config-V10-00-05)
- Added G4USE_STD11 flag for C++11 Standard.
4th April 2014 Gabriele Cosmo (config-V10-00-04)
- Force loading of symbols for templated libraries in physics_lists modules
only for global libraries. Granular libraries not supporting physics_lists
factories.
27th March 2014 Gabriele Cosmo (config-V10-00-03)
- Replaced old win32def tool for extracting symbols definitions for
DLLs build on Windows with genwindef used also in CMake.
24th March 2014 Gabriele Cosmo (config-V10-00-02)
- Force loading of symbols for templated libraries in physics_lists modules.
Defined LDFLAGS for Linux and Darwin targets.
Modified binmake.gmk accordingly.
17th January 2014 Gabriele Cosmo (config-V10-00-01)
- Fixed setting of -fPIC also for Darwin targets.
13th January 2014 Gabriele Cosmo (config-V10-00-00)
- Fixed setting of -fPIC in MT-mode for Linux-g++ and Linux-icc.
25th November 2013 Gabriele Cosmo (config-V09-06-17)
- Corrected settings for Linux-g++ and Linux-icc in the use of -fPIC in
multi-threaded mode.
19th November 2013 Gabriele Cosmo (config-V09-06-16)
- Minor correction to Darwin scripts for Qt setup.
11th November 2013 Gabriele Cosmo (config-V09-06-15)
- Updated Darwin-g++ and Darwin-clang configurations for Qt to allow for
correct detection of Qt5 directory structure.
Removed '-ansi -pedantic' compilation options, now obsolete.
Corrected include paths for X11FLAGS, to resolve compilation errors on
MacOSX 10.9 Mavericks.
- Added paths for Qt5 to Linux-g++ configuration.
- Removed obsolete Linux-egcs configuration script.
9th November 2013 Andrea Dotti (config-V09-06-14)
- Removed compilation option "--stdlib=libstdc++" introduced in previous tags
for Darwin-g++, as giving errors in MacOSX 10.7 for unknown option.
8th November 2013 Gabriele Cosmo (config-V09-06-13)
- binmake.gmk: removed 'high_energy' and 'low_energy' hadronic modules;
replaced 'lll_fission' with 'fission'.
8th November 2013 Gabriele Cosmo (config-V09-06-12)
- Removed not necessary LD flag in Darwin configurations.
8th November 2013 Gabriele Cosmo (config-V09-06-11)
- Added "-stdlib=libstdc++" compilation flag in Darwin-g++ and
Darwin-clang, allowing for resolving compilation issues on
MacOS 10.9 Mavericks.
7th November 2013 Gabriele Cosmo (config-V09-06-10)
- Added geomconf.gmk script including geometry configuration flags for
enabling use of the USolids optional module.
6th November 2013 Gabriele Cosmo (config-V09-06-09)
- binmake.gmk: added new include paths for processes/phonon and
processes/hadronic/models/abla.
1st November 2013 Gabriele Cosmo (config-V09-06-08)
- binmake.gmk: added new include paths for geometry/solids/usolids module.
- Removed obsolete compilation options in Darwin-g++ and Darwin-clang scripts.
22nd October 2013 Gabriele Cosmo (config-V09-06-07)
- binmake.gmk: added new include paths for processes/biasing module.
17th July 2013 Gabriele Cosmo (config-V09-06-06)
- binmake.gmk: added missing include path for analysis module.
16th July 2013 Gabriele Cosmo (config-V09-06-05)
- binmake.gmk: added include paths for restructured analysis module.
22nd April 2013 Gabriele Cosmo (config-V09-06-04)
- Added G4MULTITHREADED setup flags.
12th March 2013 Gunter Folger (config-V09-06-03)
- Clean up of Bertini cascade, removing two obsolete directories:
cascade/evaporation and cascade/utils.
11th January 2013 Gunter Folger (config-V09-06-02)
- Added includes for new structure of physics_lists.
14th December 2012 Gabriele Cosmo (config-V09-06-01)
- Removed includes for BREPS module.
13th December 2012 Gunter Folger (config-V09-06-00)
- Removed includes for CHIPS module.
27th November 2012 Gabriele Cosmo (config-V09-05-14)
- Added -Wno-variadic-macros -Wshadow compilation options to
Darwin-g++.gmk and Darwin-clang.gmk.
19th October 2012 Gabriele Cosmo (config-V09-05-13)
- Added -Wshadow compilation option to Linux-g++.gmk.
4th October 2012 Gabriele Cosmo (config-V09-05-12, config-V09-05-11)
- binmake.gmk: replaced "photolepton_hadron" module with "lepto_nuclear".
- Cowork with tag "hadr-V09-05-00".
23rd August 2012 Gabriele Cosmo (config-V09-05-10)
- Updated paths for X11 in X11FLAGS on Darwin targets, for porting on
MacOSX 10.8.
9th July 2012 Alberto Ribon (config-V09-05-09)
- Removed INCL package: processes/hadronic/models/incl .
22th May 2012 Garnier Laurent (config-V09-05-08)
- fix moc.gmk generation in order to generate moc in G4TMP dir
2nd May 2012 Gunter Folger
- revert changes by Mikhail (rev r58246)
27th April 2012 Mikhail Kosov (config-V09-05-07)
- hadronic/model/chiral_inv_phase_space moved to hadronic/chips
5th April 2012 Gabriele Cosmo (config-V09-05-06)
- Exclude "setup" and "clean_setup" targets from dependencies step.
16th February 2012 Gabriele Cosmo (config-V09-05-05)
- Moved basic "-lm -lstdc++" link options in LOADLIBS within platform specific
configuration scripts. Avoid using "-lm" on Linux-icc platform.
2nd February 2012 Gabriele Cosmo (config-V09-05-04)
- Corrected debug compilation option in WIN32-VC, to use -MDd instead of -MD.
27th January 2012 Gunter Folger (config-V09-05-03)
- For WIN32-VC increase stack size of executable to 12Mb.
9th December 2011 Gabriele Cosmo (config-V09-05-02)
- Corrected condition for determining QT_AS_FRAMEWORK flag depending on
how QTHOME is defined in Darwin setups. Addresses problem report #1267.
8th December 2011 Gabriele Cosmo (config-V09-05-01)
- Added Darwin-clang experimental configuration. Requires explicit addition
of -lstdc++ to LDLIBS in architecture.gmk.
8th December 2011 Gabriele Cosmo (config-V09-05-00)
- Removed unnecessary 'gcov' linkage for dynamic libraries in Darwin-g++.gmk.
22nd November 2011 Gabriele Cosmo (config-V09-04-19)
- Corrected path in Darwin-g++ setup introduced in previous tag.
22nd November 2011 Gabriele Cosmo (config-V09-04-18)
- Archived Configure scripts.
10th November 2011 Gunter Folger
- Allow use of Qt libraries not installed as Framework in Darwin-g++.gmk.
7th November 2011 Gabriele Cosmo (config-V09-04-17)
- Abilited possibility to force building of internal 'expat' module also
for Linux and Mac, through use of G4LIB_BUILD_EXPAT flag.
18th October 2011 Gunter Folger (config-V09-04-16)
- binmake.gmk: add new directories in electromagnetic/dna and
new hadronic/models/quasi_elastic
21st september 2011 John Allison (config-V09-04-15)
- G4UI_BUILD.gmk: Added G4INTY_BUILD_XT = 1 for G4VIS_BUILD_OPENGLXM_DRIVER
and G4VIS_BUILD_OIX_DRIVER. The vis drivers need Xt, so this covers
the case when the user does not build Xt from G4UI_BUILD flags.
31st August 2011 AM, MK, SI (config-V09-04-14)
- Modified binmake.gmk to add new DNA architecture.
3rd August 2011 Gabriele Cosmo (config-V09-04-13)
- Darwin-g++.gmk: modified OGLLIBS settings to support MacOSX 10.7 Lion
for proper configuration of OpenGL libraries in combination with Qt.
14th July 2011 Gabriele Cosmo (config-V09-04-12)
- Added "analysis" module to binmake.gmk.
5th July 2011 Gabriele Cosmo (config-V09-04-11)
- architecture.gmk: corrected definition of G4LIB_USE_GDML, to properly
activate GDML settings.
17th June 2011 Ben Morgan (config-V09-04-10)
- scripts/env.(c)sh : Added support for internal CLHEP. LD_LIBRARY_PATH is
correctly set when an external CLHEP is used, but not modified with any
CLHEP related variable if the internal CLHEP is used.
Should be used with current trunk of Configure (rev 50915), though this
is not absolutely required.
6th June 2011 Gabriele Cosmo (config-V09-04-09)
- Correction to binmake.gmk to restore setting of G4LIBDIR for the case of
generation of user's application library.
24th May 2011 Gabriele Cosmo (config-V09-04-08)
- Fixed configuration for CLHEP built-in module, to allow for build of DLLs.
16th May 2011 Gabriele Cosmo (config-V09-04-07)
- Corrected include path definition for built-in CLHEP module.
13th May 2011 Gabriele Cosmo (config-V09-04-06)
- Added "expat" to link list, and differentiate built-in module for WIN32
target.
10th May 2011 Gabriele Cosmo (config-V09-04-05)
- Integrated flags in architecture.gmk and binmake.gmk for use of CLHEP
built-in package in externals.
Note: the built-in package can only be used in conjunction with the
"externals" module...
10th May 2011 Gabriele Cosmo (config-V09-04-04)
- Added default for CLHEP_BASE_DIR to built-in package in externals.
Note: the default can only be used in conjunction with the "externals"
module.
9th May 2011 Gabriele Cosmo (config-V09-04-03)
- Changed common.gmk to take into account sub-directories for headers
installation.
- Workaround in binmake.gmk to avoid clashes with flag LDFLAGS set in the
user's environment beforehand.
8th May 2011 Ben Morgan
- Updated configure scripts to correct settings of G4LIB_USE_DLL for the
case of DLLs build on Windows. Partially addressing problem report #1189.
4th April 2011 Laurent Garnier
- Added flags to handle future driver OpenGLWt.
18th March 2011 Gunter Folger (config-V09-04-02)
- Address old bug report 1033 in liblist.c
17th March 2011 Gabriele Cosmo (config-V09-04-01)
- Added electromagnetic/dna module.
10th February 2011 Ben Morgan (config-V09-04-00)
- Fixed restoring of default settings for XercesC in Configure script and
internal scripts. Corrected duplication of text in setup dump.
Addessing problem reports #1159 and #1160.
22th December 2010 Laurent Garnier
- Darwin-g++.gmk: fix to avoid mixing of OpenGL X11 and framework.
8th December 2010 Gunter Folger (config-V09-03-19)
- Updated linux-icc to suppress warning when linking to shared libs
25th November 2010 Gabriele Cosmo (config-V09-03-18)
- Updated internal Configure scripts for adding new data module G4PIIDATA.
24th November 2010 Gabriele Cosmo (config-V09-03-17 & V09-03-16)
- Added hadronic/models/lend module to binmake.gmk and cleanup of obsolete
include paths.
19th November 2010 Gabriele Cosmo (config-V09-03-15)
- Added electromagnetic/pii module to binmake.gmk.
4th November 2010 Mike Kelsey (config-V09-03-14)
- Fixed typo in OGLLIBS definition for MacOSX Leopard.
2nd November 2010 Gabriele Cosmo (config-V09-03-13)
- Replace use of strcat() with more secure strncat() in liblist.c, and
protected uses of strcpy().
- Updated scripts for Configure, to allow for parallel builds (B.Morgan).
1st November 2010 Gabriele Cosmo (config-V09-03-12)
- Restore positional qualifier for LDFLAGS in architecture.gmk to allow for
explicit settings in user applications.
26th October 2010 Gabriele Cosmo (config-V09-03-11)
- Explicitly include -L$(OGLHOME)/lib -lGLU -lGL to OGLLIBS in Darwin-g++.gmk
to resolve dynamic link problem on Mac when opening X11 GL scene viewers.
Moved block of OGLLIBS for X11 to correct 'else' condition.
15th October 2010 Gabriele Cosmo (config-V09-03-10)
- More refinements to Darwin-g++ to correct and simplify Qt4 setup.
12th October 2010 Gabriele Cosmo (config-V09-03-09)
- Force definition of LDFLAGS in architecture.gmk to avoid occasional fatal
clashes with settings in user's environment.
10th October 2010 Gabriele Cosmo
- Removed obsolete Qt3 setup for Darwin-g++, Linux-g++ and WIN32-VC.
5th October 2010 Laurent Garnier (config-V09-03-08)
- Darwin-g++.gmk: fixed mix between X11 OpenGL and Native OpenGL on mac 10.6.
30th September 2010 Gabriele Cosmo (config-V09-03-07)
- Added 'obj' target to globlib.gmk to allow for just creation of object files.
23rd August 2010 Gabriele Cosmo (config-V09-03-06)
- Simplified QTLIBPATH setup in Linux-g++.gmk.
11th June 2010 Gunter Folger (config-V09-03-05)
- Increased stack size on Windows, in sys/WIN-VC added option /STACK:8368128
(i.e. 8MB) option to LDFLAGS; needed by some CHIPS-based examples and tests.
7th June 2010 Gabriele Cosmo (config-V09-03-04)
- Removed processes/hadronic/models/leading_particle module from include
paths list.
3rd June 2010 Ben Morgan (config-V09-03-03)
- Added new data set G4NEUTRONXS (Evaluated neutron cross section data,
version 1.0) to Configure script. Coworks with tag "Configure-V09-03-01".
11th May 2010 Ben Morgan (config-V09-03-02)
- Updated internal scripts for Configure: protected echos on LD_LIBRARY_PATH
so that output from use of Configure post-install is clean.
15th March 2010 Ben Morgan (config-V09-03-01)
- Configure script (Configure-V09-03-00):
o Corrected settings of LD_LYBRARY_PATH for CLHEP for the case of static
libraries build selection (path was set only for the dynamic libraries
case...).
o Corrected detection of Qt modules on MacOSX.
Addressing problem report #1095.
- Updated internal scripts for Configure.
20th January 2010 Gabriele Cosmo (config-V09-03-00)
- binmake.gmk: removed extra space characters in definition of TARGOBJEXT,
fixing issue with target for main() not being rebuilt according to
dependencies change. Addressing problem report #1098.
25th November 2009 Ben Morgan (config-V09-02-17)
- Updated internal scripts for Configure.
20th November 2009 Gabriele Cosmo (config-V09-02-16)
- Removed CHIPS/xs_dependent module from include paths.
18th November 2009 Gabriele Cosmo (config-V09-02-15)
- architecture.gmk: corrected inclusion of -lz for zlib.
- WIN32-VC.gmk: added gd32.lib to OGLLIBS.
17th November 2009 Gabriele Cosmo (config-V09-02-14)
- Added include paths to new CHIPS modules.
17th November 2009 Gabriele Cosmo (config-V09-02-13)
- G4VIS_USE.gmk: fixed dependency issues on WIN32-VC for gl2ps utility
library in visualization.
- WIN32-VC.gmk: added use32.lib to OGLLIBS to fix problems of linking
when G4LIB_BUILD/USE_WIN32_SESSION is not set (L.Garnier).
- binmake.gmk: corrected inclusion of G4zlib library in link list for
the case of global libraries.
- Updated Configure script (Configure-V09-02-03) and internal scripts:
o Added new data set for G4REALSURFACEDATA variable and updated G4LEDATA
data set version.
o Fixed detection of QtCore library; addressing problem report #1079.
o Added flag to allow running with query options on non-interactive
terminal. Resolves issue reported in Hypernews Install-and-Config #1213.
o Corrected text for installation of g3tog4 module; cernlib is not required.
5th November 2009 John Allison (config-V09-02-12)
- Removed references to obsolete GAGTREE driver.
4th November 2009 John Allison
- Added new gMocren flags for backward compatibility.
4th November 2009 Gabriele Cosmo (config-V09-02-11)
- Added new gMocren include path to G4VIS_USE.gmk script.
8th September 2009 Gabriele Cosmo (config-V09-02-10)
- Darwin-g++.gmk: added paths to $QTHOME/include and $QTHOME/lib to
setup for Qt4 configuration.
17th August 2009 Gabriele Cosmo (config-V09-02-09)
- Added G4OPTDEBUG option for hybrid optimized-debug build also to
Darwin-g++ and WIN32-g++ configurations.
3rd August 2009 Gabriele Cosmo (config-V09-02-08)
- Darwin-g++.gmk: added -arch_multiple option to LDFLAGS to force more
diagnostics for wrong architecture errors at link stage.
17th June 2009 Gunter Folger (config-V09-02-07)
- binmake.gmk: moved definition of TARGOBJEXT to place not dependent
on G4EXLIB, such that the extension is defined when no lib is present
(e.g. for hadronic exercisers).
27th May 2009 Ben Morgan (config-V09-02-06)
- Configure script:
o Rewritten check on make/gmake on WIN32-VC systems to avoid problems
with cygwin and Matlab.
o Added check to build Qt driver only when Qt UI module is built;
reordered moc checks and added cross-check on moc version.
Added safety reset of OpenGL QT build and use variables.
o Commented out echo compatibility warning to address problem report #1067.
27th April 2009 Gabriele Cosmo (config-V09-02-05)
- Linux-icc.gmk: removed "-lcxa -lunwind" LOADLIBS addition, no longer
necessary since icc-11.0.83.
20th April 2009 Laurent Garnier
- Linux-g++.gmk: corrections to respect standard location for include
and lib paths for Qt. Improved setup for non-standard Qt3 location.
8th March 2009 Laurent Garnier
- Darwin-g++.gmk: bug fix for Qt non standard installation.
- Linux-g++.gmk: changed way to fing QtLib by default.
- WIN32-VC.gmk: bug fix for building GLQTLIBS.
5th March 2009 Guy Barrand
- analysis.gmk: arrange configuration for WIN32-VC so that what is returned
by `aida-config --lib` (which may have the Windows LINK.exe syntax) is
understood by g++ which is in fact used by CygWin for linking applications.
Then transforming /LIBPATH options to -libpath options and change the path
'\' syntax to a '/' syntax. Allowing now to use the AIDA implementation
coming from an osc-batch or osc-vis binary kit built for WIN32-VC, in a
example using AIDA built from CygWin with Geant4 built with the VisualC++
compiler.
- G4UI_USE.gmk: suppressed G4UI_USE_OSC logic. From OpenScientist/16.8, the
osc-g4-vis program can instrument directly the GNUmakefile of an example or
of a user application which is a clone of some Geant4 example.
27th February 2009 Gabriele Cosmo (config-V09-02-04)
- common.gmk, globlib.gmk: added removal of moc sources in clean target.
26th February 2009 Gabriele Cosmo (config-V09-02-03)
- Linux-g++.gmk: simplified Qt setup to conform to standard Qt installation.
26th January 2009 Gabriele Cosmo (config-V09-02-02)
- architecture.gmk: restored generic name for XercesC library for WIN32-VC.
20th January 2009 Gunter Folger (config-V09-02-01)
- architecture.gmk: changed name of XercesC library for WIN32-VC.
9th January 2009 Gabriele Cosmo (config-V09-02-00)
- Added -lXi to X11LIBS for Linux-g++, Linux-icc and WIN32-g++ configurations,
required for correct linkage with OpenInventor Coin3D libraries (suggestion
by F.Jones).
9th December 2008 Guy Barrand (config-V09-01-17)
- G4UI_USE.gmk: corrected G4UI_USE_OSC to use $(shell ...) instead
of direct backquoting to solve a tricky env expansion problem,
restricted to the Open-Scientist setup.
8th December 2008 John Allison (config-V09-01-16)
- G4UI_USE.gmk: added -DG4UI_USE to CPPFLAGS. Re-ordered G4UI_NONE
and G4UI_USE_INCLUDED blocks to be coherent with G4VIS_USE.gmk.
4th December 2008 Laurent Garnier (config-V09-01-15)
- Darwin.gmk: fixed mistake in setting of OGLLIBS for Leopard.
4th December 2008 Gabriele Cosmo, Ben Morgan (config-V09-01-14)
- Linux-g++.gmk: implemented temporary workaround to allow for automatic
detection of location in non-POSIX paths for X11 and GL libraries depending
on 32/64 bits architectures.
3rd December 2008 Gabriele Cosmo (config-V09-01-13)
- Define $FIND, $SORT, $TOUCH variables to be customised with absolute
path in WIN32-VC in order to pick up correct Cygwin toolset.
1st December 2008 Ben Morgan (config-V09-01-12)
- Darwin-g++.gmk, Linux-g++.gmk: corrected definition of temporary QT3_MT
by adding missing protection.
24th November 2008 Laurent Garnier (config-V09-01-11)
- interactivity.gmk: changed flags for OpenGL and QT.
- Darwin-g++.gmk, Linux-g++.gmk, WIN32-VC.gmk: major update to Qt setup.
- Darwin.gmk: automatically detect GLLIBS for Leopard.
- moc.gmk: suppressed echo when compiling.
14th November 2008 Gabriele Cosmo (config-V09-01-10)
- Added "electromagnetic/adjoint" sub-module in binmake.gmk.
6th November 2008 Gabriele Cosmo (config-V09-01-09)
- Added "particles/adjoint" sub-module in binmake.gmk.
23rd October 2008 Gabriele Cosmo (config-V09-01-08)
- Added "persistency/ascii" sub-module in binmake.gmk.
11th July 2008 Gabriele Cosmo (config-V09-01-07)
- architecture.gmk: removed obsoled DOM library from GDMLIBS.
12th June 2008 Gabriele Cosmo (config-V09-01-06)
- Linux-g++.gmk: added G4OPTDEBUG flag for "-O2 -g" combined compilation.
- AIX-xlC.gmk: added shared libs section as for Linux-g++ according to user
suggestion on HN.
9th June 2008 Gabriele Cosmo (config-V09-01-05)
- Integrated improvements to Qt setup and AIDA.
Restored Qt libs setup to include GL as default.
20th May 2008 Gunter Folger (config-V09-01-04)
- liblist.c: removed C++ style comments.
- Not including changes made after "config-V09-01-03 ".
13th May 2008 Guy Barrand
- G4UI_USE.gmk: added material (protected with G4UI_USE_OSC) to use osc_vis
binary kits built with the Geant4 drivers. It allows to use the G4Lab::UIOnX
G4 session in Geant4 (G4Lab::UIOnX allows for visualization and AIDA plotting
within the same GUI).
- analysis.gmk: added default setup aida-config for flags
G4ANALYSIS_AIDA_CONFIG_CFLAGS and G4ANALYSIS_AIDA_CONFIG_LIBS.
30th April 2008 Laurent Garnier
- common.gmk: simplified Qt moc files integration.
- moc.gmk: new configuration file for Qt moc files setup.
- G4UI_USE, G4VIS_USE, interactivity, sys/*: separation of Qt with or
without OpenGL.
3rd April 2008 Gabriele Cosmo (config-V09-01-03)
- Linux-icc.gmk: updated setup to make use of icc-10.1 and ifort-10.1;
changed compilation option "-mp" to more performant "-fp_model precise".
2nd April 2008 Gunter Folger (config-V09-01-02)
- Replaced gets() by safer fgets() in liblist.c.
(this tag does not include latest changes in interactivity.gmk)
18th March 2008 Laurent Garnier
- interactivity.gmk: moved Qt setup before X11.
21st February 2008 Gabriele Cosmo (config-V09-01-01)
- Replaced g77 with gfortran for Linux-g++ and Linux-icc platforms.
15th February 2008 Laurent Garnier
- common.gmk: added ability to autogenerate moc files for Qt driver.
- WIN32-VC: added flags to build Qt driver on Windows.
- Darwin-g++, Linux-g++: improvements for autogeneration of MOC files for Qt.
15th January 2008 Gabriele Cosmo (config-V09-01-00)
- Added commented lines for OpenGL setup in Darwin-g++.gmk for MacOS
10.5 Leopard, pending fix from Apple.
11th December 2007 Gabriele Cosmo (config-V09-00-12)
- Corrected setup for GDML on WIN32-VC to allow for building DLLs.
30th November 2007 Ben Morgan (config-V09-00-11)
- Updated Configure script to handle Qt UI build.
- Updated internal scripts for Configure accordingly.
22nd November 2007 Gabriele Cosmo (config-V09-00-10)
- Corrected addition of lXercesC and Zlib libraries in binmake.gmk.
- Added special case for WIN32-VC for names of XercesC libraries in architecture.gmk.
- Use 'gfortran' instead of 'g77' in Darwing-g++.gmk script. (I.McLaren)
19th November 2007 Gabriele Cosmo (config-V09-00-09)
- Added "qmd" hadronic model to binmake.gmk.
16th November 2007 Laurent Garnier (config-V09-00-08)
- Updated setup for Qt in Linux-g++.gmk and Darwin-g++.gmk scripts to
support both Qt3 and Qt4.
15th November 2007 Ben Morgan (config-V09-00-07)
- Updated Configure script to handle new 'gdml' sub-module and new data
libraries (G4ABLADATA and new G4EMLOW version).
- Updated internal scripts for Configure accordingly.
2nd November 2007 Gabriele Cosmo (config-V09-00-06)
- Introduced G4LIB_BUILD_GDML/G4LIB_USE_GDML flags to trigger compilation
of the new persistency/gdml sub-module. Added setup for XERCESC.
Required path XERCESCROOT to XERCESC installation if G4LIB_BUILD_GDML
is set. Added "persistency/gdml" include path to binmake.gmk
- Added setup for QT in UI scripts, and specific QT paths and setup in
Darwin-g++.gmk. (L.Garnier)
10th October 2007 Gunter Folger (config-V09-00-05)
- Added "incl" (Liege cascade) hadronic model module to binmake.gmk.
3th October 2007 Laurent Garnier
- Added setup for Qt in those files :
- config/G4UI_BUILD.gmk
- config/G4UI_USE.gmk
- config/G4VIS_BUILD.gmk
- config/G4VIS_USE.gmk
- config/interactivity.gmk
- config/sys/Darwin-g++.gmk
- config/sys/Linux-g++.gmk
16th August 2007 Gabriele Cosmo (config-V09-00-04)
- Corrected definition of OUT internal variable to allow for proper
linking also of unit tests.
15th August 2007 Gabriele Cosmo (config-V09-00-03)
- Added "rpg" hadronic model module to binmake.gmk.
13th August 2007 Gabriele Cosmo (config-V09-00-02)
- SUN-CC.gmk: forced -xO2 as optimisation level.
18th July 2007 Gabriele Cosmo (config-V09-00-01)
- liblist.c: fixed problem affecting recent CygWin installations on
Windows in parsing the buffer for the generation of libname.map.
- binmake.gmk: defined OUT internal variable specifying the proper
compilation/linking option to Unix or Windows compilers: '-o '
and '/Fe' respectively.
11th July 2007 Makoto Asai (config-V09-00-00)
- Added digits_hits/scorer sub-directory to binmake.gmk.
28th June 2007 Gabriele Cosmo (config-V08-03-04)
- Updated Configure scripts to fix installation issue when installation
path is different from source path and headers are not installed.
- Cleared <TAB> characters from .gmk scripts where not necessary.
22nd June 2007 Gabriele Cosmo (config-V08-03-03)
- Corrected binmake.gmk for having error_propagation in INCFLAGS properly
included in search path.
- Updated internal scripts for Configure to cope with new environment
variable G4NEUTRONHPDATA.
18th June 2007 Ben Morgan (config-V08-03-02)
- Fixed Configure internal script to get rid of searching old physics_list
module at installation.
27th May 2007 Gabriele Cosmo (config-V08-03-01)
- Added "lll_fission" hadronic model module to binmake.gmk.
12th May 2007 Gabriele Cosmo (config-V08-03-00)
- Added "error_propagation" module to binmake.gmk.
- Removed G4LIB_BUILD_LISTS flag. Physics lists are built by default.
21st March 2007 Gabriele Cosmo
- Added "biasing" module to binmake.gmk.
28th February 2007 Gabriele Cosmo (config-V08-02-00)
- Protected generation of dependencies using internal 'make' variable
MAKECMDGOALS in binmake.gmk and common.gmk, following suggestion made
in problem report #930.
This protection resolves the problem of generation of dependencies when
issueing the 'clean' target.
3rd November 2006 Gunter Folger (config-V08-01-07)
- architecture.gmk: added G4LIB_BUILD_LISTS with default value 1 to build physics lists.
- binmake.gmk: added physics lists include directories to INCFLAGS.
15th October 2006 Makoto Asai (config-V08-01-06)
- binmake.gmk: added 'processes/scoring' module.
10th October 2006 Gabriele Cosmo (config-V08-01-05)
- Darwin-g++.gmk: use standard -echo- command.
Removed ECHO overloaded variable.
5th October 2006 Gabriele Cosmo (config-V08-01-04)
- liblist.c: added .dylib search for list of libraries.
Addressing problem report #885.
3rd October 2006 Gabriele Cosmo (config-V08-01-03)
- architecture.gmk: added variables for commands: echo, cat, cut, sed;
to be eventually overloaded in system dependent configurations.
- WIN32-VC.gmk: overload commands [echo, grep, cat, cut, sed], to force
usage of the original CygWin built-in commands.
21st September 2006 Vladimir Ivantchenko (config-V08-01-02)
- binmake.gmk: added electromagnetic/polarisation module.
18th August 2006 Gabriele Cosmo (config-V08-01-01)
- Linux-icc: corrected G4RUNPATHOPTION flag to allow linking of applications
with shared libraries.
18th August 2006 Gabriele Cosmo (config-V08-01-00)
- Linux-icc: updated setup to support icc-9.X series.
13th June 2006 Gabriele Cosmo (config-V08-00-02)
- Removed defaults for X11, XM, XAW flags in architecture.gmk and added
explicit settings in sys/*.gmk setups protected by ifndef statements for
optional customisation.
- Upgraded Configure internal scripts.
24th April 2006 Gabriele Cosmo (config-V08-00-01)
- binmake.gmk: fixed old-standing warning on WIN32-VC for file extension of
target object file. Defined TARGOBJEXT internal variable defining the
actual extension: .o for UNIX, .OBJ for Windows platforms.
6th April 2006 Gabriele Cosmo (config-V08-00-00)
- Darwin-g++: corrected linker options for generation of dynamic libraries.
Now dynamic libraries on MacOSX finally work. Tested on MacOS 10.4.5 with
gcc-4.0.1.
12th December 2005 Gabriele Cosmo (config-V07-01-07)
- binmake.gmk: added workaround to allow for physics-lists to link
with DLLs on Windows.
7th December 2005 Gabriele Cosmo (config-V07-01-06)
- Added G4LIB_NO_SHARED protection for cases where installation of
shared libs are not allowed.
2nd December 2005 Gabriele Cosmo (config-V07-01-05)
- Replaced -GX with -EHsc compilation option in WIN32-VC setup for
porting on VC++8 compiler.
29th November 2005 Gabriele Cosmo (config-V07-01-04)
- Added -D_CRT_SECURE_NO_DEPRECATE to WIN32-VC setup to allow for
porting on VC++8 compiler.
21st November 2005 Makoto Asai (config-V07-01-03)
- binmake.gmk: added 'digits_hits/utils' module to INCFLAGS.
5th October 2005 John Allison (config-V07-01-02)
- G4VIS*.gmk: added G4VIS_BUILD_RAYTRACERX_DRIVER and G4VIS_USE_RAYTRACERX.
29th July 2005 Mark Donszelmann (config-V07-01-01)
- Synchronized CXXFLAGS warning options of WIN32-g++ with Linux-g++.
18th July 2005 Gabriele Cosmo (config-V07-01-00)
- Excluded usage of unnecessary 'ranlib' at creation of the libraries for
WIN32-VC system. Fixes an observed problem of debug-symbols corruption.
16th June 2005 Sergey Sadilov (config-V07-00-05)