Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Future of Managed Build
  • From: William Riley <william.riley@xxxxxxxxxxx>
  • Date: Wed, 5 Feb 2020 14:16:10 +0000
  • Accept-language: en-GB, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=renesas.com; dmarc=pass action=none header.from=renesas.com; dkim=pass header.d=renesas.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=Z1HkejpVIWajkKyjeV0Y6ZJDfW4fWsl0VIKFE72B0lo=; b=QlrU1Xpw4AYvCd8xOG46TQM5I1XbviGZKpMO6DBflZ/on4BcFimF6cscIpBJeUQwtu2kiWR7tVzSBcEskyyA2G50YkFsdOpmfGsbEU23575YalLkjJtJVslYVQAz6/Nl2iY5xpbGAe1ZCK1sDHL3iQUvnQlu90Q48NYV+T7DfdlCMz/PO+0stf3yRYCkodWwL5gG2uoLjpRgcRgWV6WyQ5Zn338uft1MgNcneDNaW6yTWAqy6cnEq1xFGw42SFm+iqwY+XdOzHhizqHolIvnh9r8IpBzrVYZ70ijPtB/GcAuRuJAwgbQP4eCN6sdPmxKSDIWitqH4wu3orD/Ei4Zfw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Bkq4+moBC/DNt2yqw2RPdzgbvVOAqljK7Dk3R5Szje5uQegiko0LdpObnCTIFlMXO7qFJXq9v0xVxWKcd++EnUVjK/+TLs9wp4Q0TAqrShQ/7ynaoTIaF9EvDzgBWz3XeIglR4UVg8geHMCkkzvre5EbmkWRd3Fv9QrOG6DqlX6oZdVA2+TLPcUcVqA89KtEjzVyDs5dykkMu7AH0Mp3hR2o/RJIhGhp/92LsFraCMoTvqXzkLJJ4aJQOC1sQuFzqrqg7bv7bqNybhE/vLY8gsx3NFq63XTCJHXjNgLSIvPHGV3Yp1NUD9pujJgzN/tPtxb94L8rkGMG/oTOosM91w==
  • Delivered-to: cdt-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/cdt-dev>
  • List-help: <mailto:cdt-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHVz8LrwLQMrFydSEKbpBWdxzxxj6f3diUAgAFDjICABdeMgIADveYAgAEvQICAAE0IgIAAB02AgAA0nICAAI3KAIABmdqAgAByEQCAACSNgIAF87qQ
  • Thread-topic: [cdt-dev] Future of Managed Build

I've not had chance to catch up on the whole e-mail thread yet so this might have already been covered.

 

A while ago I made a start on a new managed build system that due to other work commitments I've not yet had chance to start sharing.

 

I was designing that system so the toolchain & project configuration mechanisms were completely separate from the actual build file generation/build engine. Any logic needed to determine how to rebuild on changes was going to be placed in a build engine specific implementation, so if targeting a tool like Ninja which can handle those cases itself there would be no special handling inside the managed build system, it would just be generating the Ninja files. The idea with that to keep the core managed build system as small as possible to make it possible connect with different build tools without running into conflicts with how they handle things.

 

Quick overview of the system I'd started. I’ve got the basics of the configuration files both for build settings & the toolchain definitions working but didn’t yet connect a build fine generator yet.

 

High level requirements:

·       GUI to allow configuration of build options for a project

o   Options for both "Tools" & "Toolchains"

o   String, Enum, Boolean & list types supported

o   Allow overriding of GUI by toolchain implementers

·       Support multiple "configurations" for each project using the same or different toolchains

·       UI should allow multiple configurations to be opened at the same time to allow users to compare configurations

·       Support for multiple build systems (planned to support Ninja & make)

·       A settings file which can be safely stored in version control & be easily merged with standard merge tools (unlike the current .cproject where the structure can change without any build options actually being changed)

·       Users should be able to add custom tools to an existing toolchain within an individual configuration

·       Mechanism for contributing toolchain converters, which could convert the build options from one toolchain to another.

 

 

Current working ideas:

·       Make the options UI an editor rather than a property page, accessible either using real files or virtual nodes in the project explorer

·       Configuration setting file (XText DSL) containing only the options data, not structural information about the toolchain

·       Configuration selection though launchbar, select configurations rather than projects.

 

Regards

William

 

-----Original Message-----
From: cdt-dev-bounces@xxxxxxxxxxx <cdt-dev-bounces@xxxxxxxxxxx> On Behalf Of Liviu Ionescu
Sent: 01 February 2020 19:05
To: CDT General developers list. <cdt-dev@xxxxxxxxxxx>
Subject: Re: [cdt-dev] Future of Managed Build

 

 

 

> On 1 Feb 2020, at 18:54, Liviu Ionescu <ilg@xxxxxxxxxx> wrote:

>

> ... project configuration.

 

What I poorly tried to explain is that this is a complex subject; some tools (like cMake) try to combine it with the builder; other tools may choose to split some functionality to a separate tool.

 

The configuration step may include one-time pre-build operations (like auto-detecting system capabilities, or choosing one of multiple cross tools for different architectures), but also application options, that can be changed at any moment during the project life time (like thread stack sizes, queue sizes, etc).

 

Changing some of these options are reflected only in the content of some header files included in the build, and the builder should be perfectly able to handle the dependencies, but some changes may be reflected in different files being added to/removed from the build, for example when building a portable project for different platforms/architectures.

 

To be noted that the pre-build system capabilities auto-detecting step (introduced by autotools, and took to the extreme by cMake) is not a mandatory step. The other choice is the npm/xPack philosophy: instead of detecting the existing capabilities and trying to make the best use of them by 'bending' the project after them, it is easier to compose the project from mandatory packages (executables and sources) and have a dependency mechanism bring into the project exactly the needed versions.

 

---

 

These are generally tricky issues, and the exact demarcation line between tools is hard to draw.

 

In brief, a build system must acknowledge that project configuration should be addressed somehow, either internally or externally.

 

 

Regards,

 

Liviu

 

 

 

 

 

_______________________________________________

cdt-dev mailing list

cdt-dev@xxxxxxxxxxx

To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/cdt-dev



Renesas Electronics Europe GmbH, Geschaeftsfuehrer/President: Carsten Jauch, Sitz der Gesellschaft/Registered office: Duesseldorf, Arcadiastrasse 10, 40472 Duesseldorf, Germany, Handelsregister/Commercial Register: Duesseldorf, HRB 3708 USt-IDNr./Tax identification no.: DE 119353406 WEEE-Reg.-Nr./WEEE reg. no.: DE 14978647


Back to the top