Skip to main content

Yet another makefile tool. This one is meant to be super fast, super easy and crossplatform while leaving full power to the user at any time.

Project description

PowerMake

What is PowerMake ?

Powermake is an utility to compile C/C++ code, just like Make, Ninja, cmake or xmake.

His goal is to give full power to the user, while being cross-platform, easier to use than Make and faster than Ninja.

For which project is PowerMake suitable ?

PowerMake was specifically designed for complex projects that have very complicated compilation steps, with a lot of pre-built tasks and which need to be compiled on multiple operating systems with different options.

Advantages of PowerMake

  • Extremely fast:

    • PowerMake is faster than Ninja/make/xmake when building a project for the first time.
    • Their is still some improvements to do for detecting that their is nothing to do for very large codebase because PowerMake doesn't actually store hidden dependencies (headers files). But with less than 2000 files, this step is almost instant.
  • Cross-Platform:

    • PowerMake is able to detect the compiler installed on your machine and give you an abstraction of the compiler syntax.
      • This currently works well with GCC/G++/Clang/Clang++/MSVC, but other compilers will be add.
    • Because it's written in python it works in almost all machine and you can always write the compilation instructions for your machine and for your compiler.
  • Gives you complete control of what you are doing. Nothing is hidden and any behavior can be overwritten.

Disadvantages of PowerMake

  • PowerMake is very young so it changes a lot at each version and you may have to write some features by yourself (the whole point of PowerMake is that you can write missing features).

  • Because PowerMake gives you full control, the tool can't really know what you are doing during the compilation step. For example, if we want to import dependencies from another PowerMake, the only thing we can do for you is running the PowerMake where it stands and scanning his output directory. This works well but has some limitations...

Philosophy

All other Make-like utilities that I know parse a file to understand directives from it.

PowerMake does the opposite. You write a python script, you do whatever you like in this script and you call PowerMake functions to help you compiling your code.
This gives you a complete control; you can retrieve files from the web, read an write files, even train a Neural Network if you want and at any time you can use Powermake functions to help you in your compilation journey.

Installation

pip install -U powermake

Quick Example

This example compile all .c and .cpp files that are recursively in the same folder as the python script and generate an executable named program_test

Warning ! PowerMake calculate all paths from his own location, not the location where it is run.
For example, python ./folder/makefile.py will do the same as cd ./folder && python ./makefile.py

Note: In this documentation, we often assume that your makefile is named makefile.py, it makes thing easier to explain. Of course, you can name your makefile the name you like the most.

import powermake


def on_build(config: powermake.Config):

    files = powermake.get_files("**/*.c", "**/*.cpp")

    objects = powermake.compile_files(config, files)

    print(powermake.link_files(config, objects))


powermake.run("program_test", build_callback=on_build)

See more examples

Documentation

Command line arguments

To benefit from the command line parser, you have to use the powermake.run function.

If no arguments are passed trough the command line, the default behavior is to trigger the build callback.
You can also write python makefile.py build, python makefile.py clean or python makefile.py install [install_location] to trigger one of the three different callbacks.

Their is also the python makefile.py config command, that doesn't trigger a callback but enter into an interactive mode for editing a configuration file.

Alternatively, you can also use the option -b or --build, -c or --clean, -i or --install and -f or --config.
This alternative has a great advantages: you can combine multiple tasks. For example, running python makefile.py -bci will first trigger the clean callback, then the build callback and finally the install callback. (The order will always be config -> clean -> build -> install).

You can also replace the -b argument with -r (using -br does the same as -r) and this will force the makefile to recompile everything, without trying to figure out which file needs to be recompiled.

There is many more options you can add such as -d (--debug), -q (--quiet), -v (--verbose), etc...

All these options can be listed by running python makefile.py -h (or python makefile.py --help)

/!\ Specificity: While python makefile.py install and python makefile.py --install takes the install_location has an optional argument, this argument has been disabled with the -i option, because writing -bic would have trigger the install callback with the location c

powermake.run

powermake.run(target_name: str, *, build_callback: callable, clean_callback: callable = default_on_clean, install_callback: callable = default_on_install)

It's the entry point of most programs.
This function parse the command line and generate a powermake.Config object, containing all the information required for the compilation, from the compiler path to the level of verbosity to use.

Then, depending on the command line arguments, this function will call the clean callback, the build callback, the install callback or all of them.

The target_name is a string that will be stored in the config and which will be used for auto-naming. You should set this to the name of your executable or the name of your library.

The build_callback and the clean_callback only takes 1 argument: The powermake.Config object generated.

Example:

import powermake


def on_build(config: powermake.Config):
    print("The build callback was called !")
    print(f"Compiling the project {config.target_name}...")

def on_clean(config: powermake.Config):
    print("The clean callback was called !")
    print(f"Erasing the project {config.target_name}...")


powermake.run("my_project", build_callback=on_build, clean_callback=on_clean)

The install_callback takes 2 arguments: The powermake.Config object and a string location that can be None if the user hasn't specified anything on the command line.

NOTE: It's often a very good idea to use the install_callback has a "pre-install script" and then call powermake.default_on_install.

Example:

import powermake


def on_build(config: powermake.Config):
    print("The build callback was called !")
    print(f"Compiling the lib {config.target_name}...")

def on_install(config: powermake.Config, location: str):
    if location is None:
        # No location is explicitly provided so we change the default for our convenance.
        location = "/usr/local/"
    
    # This ensure that the file "my_lib.h" will be exported into /usr/local/include/my_lib/my_lib.h
    # The .so or .a that corresponds will be copied into /usr/local/lib/my_lib.so
    config.add_exported_headers("my_lib.h", subfolder="my_lib")

    powermake.default_on_install(config, location)


powermake.run("my_lib", build_callback=on_build, clean_callback=on_clean)

powermake.Config

This is the most important object of this library.
It contains everything you need for your compilation journey. For example, it stores the C compiler alongside with the path to the build folder.

Most of the time, this object is created by powermake.run and you don't need to worry about the constructor of this object (which is a bit messy...).

But one thing you have to know is that the construction of this object involve 3 steps:

  • step 1: It loads the local config file, by default stored at ./powermake_config.json just next to the makefile.py (or whatever name your makefile have)
  • step 2: It complete the local config with the global config, by default, stored in your home, at ~/.powermake/powermake_config.json (If you create an env variable named POWERMAKE_CONFIG, you can override this location.).
  • step 3: For all fields that are left empty, powermake will try to create a default value from your platform information.

In theory, after the end of these 3 steps, all members of the powermake.Config object should be set.
In rare case, if powermake was enable to detect a default compiler, the c_compiler, cpp_compiler, archiver and linker members can be None.
In this situation, it's your responsibility to give them a value before the call to the powermake.compile_files function.

If you haven't, we recommend you to try compiling your code without setting any powermake_config.json. In most cases, the automatic detection of your environnement does a good job finding your compiler/system/etc...

We provide a tool to interactively set your configuration file, you use it either by running python -m powermake or python makefile.py config, but this tool cannot configure everything, so we provide here an example of a powermake_config.json.
Here, everything is set, but you should set the bare minimum, especially, you shouldn't set the "host_architecture", it's way better to let the script find it.
Please note that this example is incoherent, but it shows as many options as possible.

{
    "nb_jobs": 8,
    "host_operating_system": "Linux",
    "target_operating_system": "Windows",
    "host_architecture": "x64",
    "target_architecture": "x86",

    "c_compiler": {
        "type": "gcc",
        "path": "/usr/bin/gcc"
    },
    "cpp_compiler": {
        "type": "clang++"
    },
    "archiver": {
        "type": "ar",
        "path": "/usr/bin/ar"
    },
    "linker": {
        "type": "gnu",
        "path": "/usr/bin/cc"
    },

    "obj_build_directory": "./build/objects/",
    "lib_build_directory": "./build/lib/",
    "exe_build_directory": "./build/bin/",

    "defines": ["WIN32", "DEBUG"],
    "additional_includedirs": ["/usr/local/include", "../my_lib/"],
    "shared_libs": ["mariadb", "ssl", "crypto"],
    "c_flags": ["-fanalyzer", "-O3"],
    "cpp_flags": ["-g", "-O0"],
    "c_cpp_flags": ["-Wall", "-Wextra"],
    "ar_flags": [],
    "ld_flags": ["-static"],

    "exported_headers": ["my_lib.h", ["my_lib_linux.h", "my_lib/linux"], ["my_lib/windows.h", "my_lib/windows"]]
}

Members

All fields have the same name in the powermake_config.json and in the powermake.Config object, so we have grouped them below.

nb_jobs

This number determinate on how many threads the compilation should be parallelized.
If non-set or set to zero, this number is choose according to the number of CPU cores you have.

Set this to 1 to disable multithreading.

This can be overwritten by the command-line.

host_operating_system

A string representing the name of your operating system. For the moment it doesn't serve any purpose, but you can access it if needed.

  • It's not recommended to set this in the json file, the autodetection should do a better job.
target_operating_system

A string representing the name of the operating system for which the executable is for.
It's used to determine the subfolder of the build folder and for the functions target_is_linux, target_is_windows, etc...

  • You can write this in the json configuration, but only if you are doing cross-compilation, on the other hand, you should let powermake retrieve this value.
  • Note that if you change this value in the script after the config is loaded, obj_build_directory, lib_build_directory and exe_build_directory will not be updated
host_architecture

A string representing the architecture of your system, it can be "amd64", "x64", "x86", "i386", etc...
If you need an easier string to work with, use config.host_simplified_architecture which can only be "x86", "x64", "arm32" or "arm64".
For the moment it doesn't serve any purpose, but you can access it if needed.

  • It's not recommended to set this in the json file, the autodetection should do a better job.
target_architecture

A string representing the architecture of the executable, it can be "amd64", "x64", "x86", "i386", etc...
If you need an easier string to work with, use config.target_simplified_architecture which can only be "x86", "x64", "arm32" or "arm64".
It's used to determine the subfolder of the build folder and to set the compiler architecture. However, for the moment, gcc and clang only switch from 64 bits to 32 bits. If you are on x64 and you set the target_architecture to "arm32", you will in reality compile for x86. You have to give the path of a cross-compiler in order to achieve what you want.

  • You can write this in the json configuration, but only if you are doing cross-compilation, on the other hand, you should let powermake retrieve this value.
  • Note that if you change this value in the script after the config is loaded, the environnement will not be reloaded and the compiler will keep the previous architecture
c_compiler

This one is different in the json config and in the loaded config.

In the json config, it's define as an object with 2 fields, like that:

"c_compiler": {
    "type": "gcc",
    "path": "/usr/bin/gcc"
},

If the "path" field is omitted, the compiler corresponding to the type is searched in the path. For example if "type" is "msvc", the compiler "cl.exe" is searched in the path.

If the "type" field is omitted, his default value is "gnu".

  • The "type" field can have the value "gnu", "gcc", "clang", "msvc" or "clang-cl".
    It determines the syntax that should be used. For example, if you are using mingw, the syntax of the compiler is the same as the gcc syntax and your compiler should be set like that:

    "c_compiler" {
        "type": "gcc",
        "path": "C:\\msys64\\ucrt64\\bin\\gcc.exe"
    }
    

    Note: for mingw on Windows, you should simply set C:\msys64\ucrt64\bin in your PATH and powermake will be able to find it automatically

  • The "path" field indicate where is the executable of the compiler. Note that PATH searching is always applied, so "gcc" work as well as "/usr/bin/gcc" For mingw on Linux, your compiler can be set like this:

    "c_compiler" {
        "type": "gcc",
        "path": "x86_64-w64-mingw32-gcc"
    }
    

When the powermake.Config object is loaded, the c_compiler member is no longer a dict, it's a virtual class which inherit from powermake.compilers.Compiler and which is able to generate compile commands. see [documentation in coming]

cpp_compiler

The cpp_compiler behave exactly like the c_compiler but the possible types are:

  • g++
  • clang++
  • msvc

You can also use one of the c_compiler types, but in this case you must add a path or the compilers will not be C++ compilers.

archiver

The archiver is the program used to create a static library.

The configuration in the json behave exactly like the c_compiler but the possible types are:

  • gnu
  • ar
  • llvm-ar
  • msvc

Once loaded, the config.archiver is a virtual class that inherit from powermake.archivers.Archiver.

linker

The configuration in the json behave exactly like the c_compiler but the possible types are:

  • gnu
  • gcc
  • g++
  • clang
  • clang++
  • msvc

Once loaded, the config.linker is a virtual class that inherit from powermake.archivers.Linker.

obj_build_directory

This is the directory in which all .o (or equivalent) will be stored.

  • It's not recommended to set this in the json file, the automatic path generation should do a better job, ensuring that debug/release, windows/linux or x86/x64 doesn't have any conflict.
lib_build_directory

This is the directory in which all .a, .so, .lib, .dll, etc... will be stored.

  • It's not recommended to set this in the json file, the automatic path generation should do a better job, ensuring that debug/release, windows/linux or x86/x64 doesn't have any conflict.
exe_build_directory

This is the directory in which the linked executable will be stored.

  • It's not recommended to set this in the json file, the automatic path generation should do a better job, ensuring that debug/release, windows/linux or x86/x64 doesn't have any conflict.
defines

This is a list of some defines that will be used during the compilation process.

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these defines directly in the makefile with config.add_defines, if needed, in a conditional statement like if config.target_is_windows():
additional_includedirs

This is a list of additional includedirs that will be used during the compilation process.

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these includedirs directly in the makefile with config.add_includedirs, if needed, in a conditional statement like if config.target_is_windows():
shared_libs

This is a list of shared libraries that will be used for the link.

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these shared libs directly in the makefile with config.add_shared_libs, if needed, in a conditional statement like if config.target_is_windows():
c_flags

A list of flags that will be passed to the C compiler (not the C++ compiler).

If in the powermake known flags list, these flags are translated for the specific compiler.
If not, they are simply passed to the compiler.

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these flags directly in the makefile with config.add_c_flags, if needed, in a conditional statement like if config.target_is_windows():
cpp_flags

A list of flags that will be passed to the C++ compiler (not the C compiler).

If in the powermake known flags list, these flags are translated for the specific compiler.
If not, they are simply passed to the compiler.

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these flags directly in the makefile with config.add_cpp_flags, if needed, in a conditional statement like if config.target_is_windows():
c_cpp_flags

A list of flags that will be passed to the C compiler AND the C++ compiler.

If in the powermake known flags list, these flags are translated for the specific compiler.
If not, they are simply passed to the compiler.

In the powermake.Config object, this list doesn't correspond to a real list, it's just a property. You can read the value of config.c_cpp_flags, it's just the concatenation of c_flags and cpp_flags, but you can't edit this property, you have to use config.add_c_cpp_flags and config.remove_c_cpp_flags

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these flags directly in the makefile with config.add_c_cpp_flags, if needed, in a conditional statement like if config.target_is_windows():
ar_flags

A list of flags that will be passed to the archiver.

If in the powermake known flags list, these flags are translated for the specific archiver.
If not, they are simply passed to the archiver.

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these flags directly in the makefile with config.add_ar_flags, if needed, in a conditional statement like if config.target_is_windows():
ld_flags

A list of flags that will be passed to the linker.

If in the powermake known flags list, these flags are translated for the specific linker.
If not, they are simply passed to the linker.

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these flags directly in the makefile with config.add_ld_flags, if needed, in a conditional statement like if config.target_is_windows():
exported_headers

This is a list of .h and .hpp that needs to be exported in a include folder during the installation process.

This list can directly contain strings, in this case, the file is exported at the root of the include folder.
This list can also contain 2 elements lists. The first element is the file to export and the second element is the subfolder of the include folder in which the file should be exported.

  • This list is merged from the local and global config
  • It's not recommended to set this in the json file, it makes much more sense to add these headers directly in the makefile with config.add_exported_headers, if needed, in a conditional statement like if config.target_is_windows():

Methods

These are all the methods you can call from the the powermake.Config object.
You can access all members to read them, but you should use these methods if possible to set them, in order to ensure that everything stays coherent.

set_debug()
config.set_debug(debug: bool = True, reset_optimization: bool = False)

If debug is True, set everything to be in debug mode. It replaces the NDEBUG define by DEBUG, it adds the -g flag and if possible it modify the output dir to change from a release folder to a debug folder.

If debug is False, set everything to be in release mode. (does the opposite of what's explained above)

If reset_optimization is set to True, then a debug to True will put the optimization to -O0 and a debug to False will put the optimization to -O3

  • If possible you should prefer using the command-line instead of this function.
set_optimization()
config.set_optimization(opt_flag: str)

Remove all optimization flags set and add the opt_flag

target_is_windows()
config.target_is_windows()

Returns True if the target operating system is Windows. This use the config.target_operating_system member.

target_is_linux()
config.target_is_linux()

Returns True if the target operating system is Linux. This use the config.target_operating_system member.

target_is_mingw()
config.target_is_mingw()

Returns True if the target operating system is MinGW This use the config.target_operating_system member and the config.c_compiler member.

add_defines()
config.add_defines(*defines: str)

Add new defines to config.defines if they do not exists. This method is variadic so you can put as many defines as you want.

remove_defines()
config.remove_defines(*defines: str)

Remove defines from config.defines if they exists. This method is variadic so you can put as many defines as you want.

add_shared_libs()
config.add_shared_libs(*shared_libs: str)

Add shared libraries to config.shared_libs if they do not exists. This method is variadic so you can put as many libs as you want.

remove_shared_libs()
config.remove_shared_libs(*shared_libs: str)

Remove shared libraries from config.shared_libs if they exists. This method is variadic so you can put as many libs as you want.

documentation in progress...

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

powermake-1.4.2.tar.gz (30.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

powermake-1.4.2-py3-none-any.whl (44.0 kB view details)

Uploaded Python 3

File details

Details for the file powermake-1.4.2.tar.gz.

File metadata

  • Download URL: powermake-1.4.2.tar.gz
  • Upload date:
  • Size: 30.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for powermake-1.4.2.tar.gz
Algorithm Hash digest
SHA256 247dc7c9a0ce4992fd58c78916d93924c12dcc790073535f199978f89f2b2502
MD5 d6ee3d08568569248b39ec0265d123bb
BLAKE2b-256 cd17b5b3aa5aefee806d355a64f66a92f10e06c6c59cac9bbecc52c104fcb4fe

See more details on using hashes here.

File details

Details for the file powermake-1.4.2-py3-none-any.whl.

File metadata

  • Download URL: powermake-1.4.2-py3-none-any.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for powermake-1.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 2ffff0a88678a4d8e7752238e47f2af9fabf04dace5a35d2c6fa44dbee34e4a8
MD5 a90a178f5938f44a8fe037dc010851ff
BLAKE2b-256 50fdfabf5421bbef746d10d6bbd747a9a10cc94a95288cdea56759d73258b2c0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page