Bug 2919 - add g++ version check to bake
add g++ version check to bake
Status: PATCH WANTED
Product: bake
Classification: Unclassified
Component: bake
unspecified
All All
: P3 normal
Assigned To: Daniel Camara
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2018-05-17 13:52 EDT by Tom Henderson
Modified: 2018-05-17 13:52 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tom Henderson 2018-05-17 13:52:25 EDT
It would be nice to flag and gracefully handle g++ version incompatibility issues, such as (for nsc):

+      <depends_on name="g++" max_version="5" optional="False"/>

or for ns-3:

+      <depends_on name="g++" min_version="4.9" optional="False"/>

the solution (for ns-3) should not disable compilation on clang or other compilers; i.e. adding g++ min_version should be ignored if compiler is not g++.