Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 2 and Version 3 of waf-project/GSoC


Ignore:
Timestamp:
02/19/16 01:39:49 (8 years ago)
Author:
Amar Takhar
Comment:

Fill in some projects.

Legend:

Unmodified
Added
Removed
Modified
  • waf-project/GSoC

    v2 v3  
    1212== Project Ideas ==
    1313
     14=== Built-in Packaging ===
    1415
     16This project involves adding support to Waf for built-in packages:
     17
     18  * OS X `.pkg` and `.app`
     19  * Windows `.msi`
     20  * Enhanced source tarballs
     21    * This involves adding support for distributing generated files with the tarball.  A good example is including the `.c` and `.h` files from a Bison `.y` file.  This would remove the dependency on Bison for tarballs and allow for better release testing.
     22
     23----
     24
     25=== Unit Tests For waflib ===
     26
     27Currently the core of Waf, `waflib` has no unit tests.
     28
     29The goal of this project is to create a set of tests that can be shipped with waf built-in.  When a user of waf wants to build they should be able to run `waf test-internal` and have it check the state of Waf on that platform.
     30
     31This has the benefit of ensuring builds are repeatable and successful on the platform the developer or user is running on.  Some projects may want to enable this by default when building from a tarball for enhanced security.
     32
     33----
     34=== Profiling / Debug Support ===
     35
     36This project involves adding built-in support for gprof, gcov, valgrind or other development tools.  A general all-purpose library should be created to easily insert other tools as necessary.
     37
     38Waf should collect build information during the build process for dumping and parsing later on.
     39
     40A new command `waf bug` would be added to dump current build information in a format suitable for attaching and pasting into a bug report for an online bug tracker.
     41
     42This would also involve creating a new internal JSON log format to dump compile commands, compiler output and internal state that can be captured raw or pretty-printed into HTML or Text for gleaning information about the build.