I'm looking to migrate a large project from using make to using waf. Are there any tools that can help automate the process to some extent?
Is there a tool to help migrate from make to waf?
653 views Asked by fredley At
1
There are 1 answers
Related Questions in MIGRATION
- How Do Schema migration in mongoose & mongodb?
- WPF Windows Initializing is locking the separated thread in .Net 8
- Migrate data from MySQL to PostgreSQL In Azure
- migrate error : ...No migrations to apply
- After upgrading Alfresco from 5.2 to 7.2 getting failed to initialize keystore error. Our old repository is in Alfresco 5.2
- Convert Neoload script to LoadRunner script
- Migration of UseOAuthAuthorizationServer from .Net Framework to .Net8
- Migrate multiple notebooks from current environment to new environment
- How to Generate a Migration Script in the Azure DevOps
- C# Project Coding
- Blazor hybrid cant add migration
- Migrate from SAML extensions to SAML service provider and spring security
- Ejabberd Migration from 23 to 24
- unable to upload Paginated report
- Android Studio could not build Flutter App APK after migration
Related Questions in MAKEFILE
- How to refer to the filepath of test data in test sourcecode?
- Can't connect to postgres with Adminer using Docker on MacOS
- Flint installation error: make: *** [build/generic_files/memory_manager.lo] Error 1
- How to compile the Linux kernel with -O0 for more detailed debug?
- Makefile:7: *** missing separator. Stop (HELP NEEDED)
- Trying to compile GCC returns a bunch of errors
- cmake and g++ cross compilation looking for library in host sysroot path instead of target sysroot
- Turn a makefile into a list of build commands
- make test error with Golang: make: *** [Makefile:47: manifests] Error 126
- Passing optional arguments from makefile to shell script
- GNU make file pairwise combinations of files in folder
- make Error 2, The system cannot find the file specified
- Why do I get a make: *** No target specified and no makefile error?
- why does Make give error while compiling?
- CMake always rebuilding included file even if it didn't change
Related Questions in WAF
- How to mix IPv4 and IPv6 in AWS WAF IP sets?
- Waf fails to configure C compiler on github actions
- Waf is unable to find 3rd party library
- What do blank regions in the waf parallel_debug image indicate?
- Linking zmq to a c++ program in ndnsim
- How should I add Crypto++ 8.80 library to NS3 3.31 ? The OS is Ubuntu 20.04. My main aim to test TLS 1.3 cipher suites with wireless sensor network
- NS3 ./Waf - fatal error: Python.h: No such file or directory
- Idiom for creating similar build targets (one option changes)
- Add an include path for a single file in a library
- How can I use the GCC -frandom-seed=<file name> option with the waf build system?
- Waf: target is directory
- How to access config variables in exec_command()s?
- WAF: recursive find_program()
- Howto define symbolic tasks with waf?
- how to convert waf build system to exe?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
No, there isn't, but the migration isn't that complex.
If you've never used waf before, look at an example from the
demos/folder (cis the typical one), and digest the waf book.Then, from make to waf:
configure()function, instanciate the needed high-level tools and define the relations to external libraries using high-level tools if possible (eg.check_cfg()handlespkg-config(1)) or fall back in defining{DEFINES,INCLUDE,LIB,...}_$LIBNAME, eg:avoid using
*FLAGSif possible, as they are compiler-specific.configure()), eg.Overall, the build scripts will be shorter and easier to read than makefiles. They are more linear, and their content is more semantical.
Note that you don't need to create static libraries if you don't plan to export them. waf tools does not use the shell to call programs, so the command-line length limit (main reason to create internal static libs) is not a problem.