File: features-16

package info (click to toggle)
gprbuild 2015-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,228 kB
  • ctags: 67
  • sloc: ada: 27,214; xml: 4,127; makefile: 337; sh: 227; cpp: 89; fortran: 62; ansic: 37
file content (100 lines) | stat: -rw-r--r-- 4,483 bytes parent folder | download | duplicates (2)
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
==============================
GPRBUILD 1.6 NEW FEATURES LIST
==============================

Copyright (C) 2010-2012, AdaCore

This file contains a complete list of new features in version 1.6 of GPRBUILD.
A full description of all GPRBUILD features can be found in the GPRBUILD
User's Guide.

An ISO date (YYYY-MM-DD) appears in parentheses after the description line.
This date shows the implementation date of the feature. Any 1.6.0w
wavefront subsequent to this date will contain the indicated feature, as
will any subsequent releases.

NF-16-L104-042 License updated to GPL3 (2012-01-04)

  The license for gprbuild is now GPL3.

NF-16-K907-021 Default config file created by gprconfig (2011-09-22)

  The default config project file created by gprconfig is now default.cgpr in
  the current working directory, instead of <prefix>/share/gpr/default.cgpr.
  This will prevent the involuntary creation of a global config file.

NF-16-K621-023 Warning when --create-map-file is not supported (2011-06-21)

  When option --create-map-file is not supported (that is attribute
  Linker'Map_File_Option is not declared in the configuration project file),
  gprbuild issues a warning if this option is used.

NF-16-K408-001 New attributes Dependency_Kind and Language_Kind (2011-04-21)

  Two new configuration attributes are added in package Compiler:
  Dependency_Kind and Language_Kind. By default, for Ada, language kind
  is unit based and dependency kind is ALI file. For other languages,
  language kind is file based and dependency kind is Makefile.
  These attributes may be overriden in user projects.
  No change of functionality if they are not overriden.

NF-16-K331-022 Clear message for command line switch in Builder (2011-04-04)

  When a gprbuild switch that is only valid on the command line is found in
  package Builder of the main project, gprbuild fails with a clear message
  indicating that the switch "can only be used on the command line".

NF-16-K316-038 Warning when not using Builder'Switches (2011-03-17)

  When compiling several mains at once, gprbuild ignores the Builder'Switches
  specific to those mains, and use the switches for their common language
  instead (if any). Gprbuild will now issue a warning in such cases, that
  it hasn't used the main-specific switches.

NF-16-K310-024 Relative file names on the gprbuild command line (2011-03-10)

  For compatibility with gnatmake, gprbuild now accepts file names relative
  to the current directory on its command line.

NF-16-K310-021 Allow unit names on the gprbuild command line (2011-03-10)

  For compatibility with gnatmake, gprbuild now accepts unit names on the
  command line.

NF-16-K223-006 --RTS switches in package Builder (2011-04-01)

  When configuration project file is auto-generated and there are no switches
  --RTS on the command line, the switches --RTS found in package Builder of the
  main project are taken into account to invoke gprconfig and produce the
  configuration project file.

NF-16-K103-005 Duplicate source file names when no compiler (2011-04-05)

  When the compiler driver for a language is empty (""), it is now allowed
  to have duplicat source file names in any source directory of a project,
  even if they are in the same subdirectory tree specified with the ".../**"
  notation.

NF-16-JA11-035 New gprbuild switches -vl, -vm and -vh (2010-10-12)

  Three new switches are added to gprbuild: -vl, -vm and -vh, similar to
  the same switches for gnatmake. They are accepted on the command line and
  in package Builder.

NF-16-H414-002 Support for aggregate projects (2011-03-15)

  A new concept was added to the project facility: aggregate projects. These
  can be used to group together two or more independent projects, and compile
  all their main units through a single command. See the documentation for
  more use cases. The support is not complete yet, and in particular gprbuild
  is missing a number of consistency checks, but the feature is already
  useful as is.

NF-16-H320-021 Support for aggregate library projects (2011-07-17)

  A new concept was added to the project facility: aggregate library
  projects.  These can be used to group together two or more
  independent projects and to build a single library out of the
  object files compiled from all those aggregated projects. The
  support is not complete yet, and in particular gprbuild is missing a
  number of consistency checks, but the feature is already useful as is.