Announcement

Collapse
No announcement yet.

Goals: Red Hat Developer Working On New Tool To Improve Upon Make

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Blahblah
    replied
    Originally posted by mkrupcale View Post

    build2 is a a cargo-like build toolchain written in C++. It is like make in the sense that its build files have a notion of targets, prerequisites, and rules. However, it does extract some source code dependency information such as the usual header dependencies and even C++20 modules. Plus it's highly extensible (especially with the introduction of build system modules in v0.12) and can deal with generated source code dependencies defined by rules such as the in module.

    Then there are package-level dependencies which are dealt with using a normal package manifest file analogous to the Cargo.toml file.

    Full disclosure: I'm the build2 package maintainer on Fedora.
    Nice! I've taken a look at the project page and it looks quite featureful. I like that it has a proper concept of versioning; I'm going to try it out over the weekend.

    Leave a comment:


  • rogerx
    replied
    Originally posted by juarezr View Post

    Also it's not clear but maybe it will come with dependencies to OCaml and Perl. This will just stress the developer system setup already crowded with libraries and version requirements.
    • NIH ?
    • YABT ?
    What you think about?
    I completely agree. Adding more depends stresses developers. Currently sys-devel/make depends on guile, gettext, libintl here on Gentoo. Adding perl as a dependencies would be like being hit by a hurricane.

    I read a book to learn make, and within a week I was writing Make files, while gritting with the white spaces.

    With CMake, I cannot even find a decent book or decent documentation to write CMake files. Almost like it was given to the open source coding community with strings attached from proprietary software vendors.

    Leave a comment:


  • juarezr
    replied
    Originally posted by skeevy420 View Post

    Neither can I, but I did say "If Goals can be a drop in replacement". IF is the keyword.

    I was also wondering about the dependencies requirement too.

    I also saw that "I hope it's like Cargo" post and thought to myself: "Iz you a tard?" due to all the places and languages that make is expected to work with.

    It does aim to solve shell and scripting issues without requiring people to know about hacks like .PHONY and whatnot. If it can do that while acting as a drop-in replacement, then it is worth the effort and will have mine and a lot of other's gratitude. There's another IF there.

    What I think about? Let's not go there
    Yeah!
    It would be wonderful IF, but I think that is NOT !!!!

    Leave a comment:


  • g04th3rd3r
    replied
    GNU make is quite featureful, ubiquitous, free, and most importantly, thoroughly debugged. Any deficiencies can easily be addressed with a meta-make utility that generates a makefile, and then calls make. I wrote one myself about 20 years ago as a bash script, and use it to this day with minor upgrades over the years. It makes trivial the building of multiple versions of executables, libraries, and directory hierarchies from a single meta-make file which is actually just the top portion of a GNU makefile.

    It's almost always better to build on proven infrastructure than to reimplement.

    Leave a comment:


  • Jabberwocky
    replied
    Originally posted by rwmj View Post
    To answer a few questions:

    It's an experimental tool designed to explore new directions for a make-like tool. It absolutely does not work like the other tools people have mentioned. Free software continues to get better by people doing experiments, and we see what works and what doesn't work. Maybe goals won't work, in which case I'll have wasted a few weeks over Christmas. Maybe it'll be picked up in another tool. Maybe goals will become incredibly successful and displace those other tools (this is very unlikely). I'd advise people to actually watch the video, by comparing the tool to CMake and meson - which is literally mentioned in the first slide of the video - it shows you didn't do that.

    Why not modify "make"? The syntax is totally different and has to be that way in order to solve the problems that make has. No such change would be acceptable to make.

    The code is fully open source. The license is GPLv2.
    Welcome to Phoronix. Thanks for your research and talk/demo.

    I've been using the following method for large projects.
    1. make -> build -> docker -> dependency & compilation
    2. make -> test -> docker -> unit and mock tests
    3. (optional) make -> integration tests
    4. make -> publish
    My systems only run on Linux-AMD64. I target many Operating Systems and Architectures via cross-compilation. Docker supports most dependency management tools most developers like to use e.g. cargo/npm/go-modules. I've used the same approach for macOS-AMD64 but it's usually once off projects. in theory this approach works on many other operating systems in case cross-compilation is not a option or advanced integration tests are required. For my projects integration testing is only possible after (internal) publication.

    I agree with you, Make really has some tricky gotchas but it is a really good tool overall. Good luck with Goals!

    Leave a comment:


  • starshipeleven
    replied
    Originally posted by jason.oliveira View Post
    Your reading skills suck.
    That guy stuck in a "get off my lawn" mentality is complaining about people not looking at his bug reports and then closing them after a rewrite, he is not against rewrites.
    If someone rewrote stuff and checked that his bug was not present anymore it would be called refactoring and that's what serious projects do and it's perfectly OK.

    Also I'll tell you that he is an idiot if he seriously thinks issues that plagued humanity since the beginning of time are only of younger people. This extends on you too of course.

    Leave a comment:


  • jaypatelani
    replied
    They can just use PkgSrc make https://opensource.com/article/19/11...c-netbsd-linux

    Leave a comment:


  • ssokolow
    replied
    Originally posted by jason.oliveira View Post
    CADT is about the maintainers of a project hitting the reset button whenever the maintenance tasks get un-fun. If this weren't an effort to explore "Make, but designed with what we learned from 40 years of having it", NIH would be the correct term.

    Leave a comment:


  • marek
    replied
    Is it gonna compile faster than ninja? If yes, can you prove it? If not, why care?

    Leave a comment:


  • jason.oliveira
    replied
    Originally posted by starshipeleven View Post
    Why work on 40 year old codebase if you can avoid it? Make isn't a kernel.
    JWZ wrote an article about kids like you.

    Leave a comment:

Working...
X