Waf is a Python-based framework for configuring, compiling and installing applications. It derives from the concepts of other build tools such as Scons, Autotools, CMake or Ant.
2
votes
2answers
61 views
Setting C++ build working directory in Eclipse
I am trying to set up a C++ project in Eclipse (on Windows) that uses Waf to build. My Eclipse workspace and my source files are in different directories.
C:\myproject: Project root
...
1
vote
2answers
29 views
Is is possible for my Waf wscript to call other wscripts in the current directory?
I am building a project with Waf. It has several third-party dependencies, and I would like to build each dependency from my main wscript. My project is organized like this:
/boost/
/gtest/
/source/
...
0
votes
1answer
24 views
Check_cxx() not working with cuda
I am new to the waf framework of compiling and building a project. Basically I am trying to load the compiler and the library for compiling the .cu files. and I have the following line of code taken ...
1
vote
1answer
38 views
how to add '-include global.h' after '-I includedir'?
I'm trying to use -include preprocessor option. GCC Preprocessor Options
I've failed to do that in my configure method as regular CXXFLAGS option
def configure(conf):
conf.load('compiler_cxx')
...
-1
votes
1answer
47 views
Install PyCairo for Python 3 on OSX [closed]
I've been spending a few hours trying to install pycairo, the Python 3 bindings for Cairo, but was unsuccessful.
what I did:
Install cairo with macports
Install py33-cairo with macports (apparently ...
3
votes
1answer
129 views
How do you link opengl and glut using waf on osx?
I'm trying to build a C++ opengl program on osx using waf and can't to get it to work.
Normally when I compile an opengl program I use this in terminal:
g++ main.cpp -framework GLUT -framework ...
1
vote
1answer
38 views
waf - custom command tooltip
I create a custom command via
def spawn_pot(ctx):
ctx.recurse ('po')
class spawnpot(BuildContext):
cmd = 'spawnpot'
fun = 'spawn_pot'
and I would like to set a tooltip, but I could ...
2
votes
1answer
38 views
waf - update and generate translation pot file
Is there a specific API call (maybe undocumented, none is listed here http://docs.waf.googlecode.com/git/apidocs_16/tools/intltool.html ) which allows me to create and/or update a translation ...
0
votes
1answer
56 views
waf specify libraries at build time, but get full name at configure time
Using waf 1.7.9 with extras/boost.py added, I find that you have to get the libraries at configuration time which makes it difficult to build targets with different sets of libraries. For example, I ...
1
vote
1answer
80 views
How to determine tools chosen by waf?
How can I determine which specific tool waf chose as 'cxx_compiler' etc?
Exempli gratia:
def configure(ctx):
print('Running ' + ctx.cmd + ' in ' + ctx.path.abspath() )
ctx.load('compiler_c')
...
0
votes
3answers
108 views
Kill the previous command in a pipeline
I am running a simulation like this
./waf --run scratch/myfile | awk -f filter.awk
How can I kill the waf command as soon as filter.awk detects that something happened (e.g. after a specific line ...
4
votes
1answer
88 views
Processing changed files in WAF script
Is it possible to write a WAF function in wscript file, which will be called while building on every changed file?
I want to be able to do the following:
Process all input .hpp files by a custom ...
1
vote
2answers
154 views
Adding include path to Waf configuration (C++)
How can I add a include path to wscript?
I know I can declare which files from which folders I want to include per any cpp file, like:
def build(bld):
bld(features='c cxx cxxprogram',
...
1
vote
0answers
51 views
Calling another build tool from setup.py
I have a medium-sized C++/Python project that requires external dependencies and tools to get compiled. Namely, to interact with Qt's MOC compiler among other stuff.
This project produces a library, ...
0
votes
1answer
113 views
ld can't find a library when using Waf, but it can when not using Waf
I'm trying to build my project. I have libuv already compiled in ./libuv as libuv.a (so the relative path to the library is ./libuv/libuv.a).
When I use clang directly, it works:
$ clang++ ...
1
vote
1answer
78 views
Waf - Source not found: None
I'm trying to compile a 64-bit application using Waf, but the wscript is returning the error:
Source not found: None.
I have heard that this can be due to improper indentation or mixed character ...
1
vote
2answers
283 views
cmake vs waf for C++ project
I found similar topic: Autotools vs. Cmake vs. Scons , but my question is a little bit other and I think the answers could be other too.
I found a lot of articles telling that waf is unstalbe (API ...
1
vote
2answers
77 views
How to search for libraries/headers in custom paths using waf?
I try to search for a library and headers in a waf wscript file. Generally, that's possible with:
def configure( conf ):
conf.load( "compiler_cxx" )
conf.check_cxx( lib = "thelib" )
...
0
votes
1answer
130 views
WAF: Conflict between MinGW (GCC) and MSVC 2012
I've just run into misery with WAF. I use MinGW-w64 exclusively to build stuff. But, recently, I've installed MSVC 2012 because sometimes it is required to build various small utilities which have ...
0
votes
4answers
130 views
waf at linking time: “undefined reference” error
So I've been banging my head on this compiler error for the last 2 hours and thought I would post the code here to see if anyone can shed any light on my mistake.
I have stripped out all the ...
1
vote
1answer
19 views
How to use yaml-cpp in NS3
Does anyone know how to use the yaml-cpp lib in NS3 module?
I have finished the source code, but I have a hard time figuring out how to link it as it got the undefined reference to error when ...
3
votes
1answer
182 views
How to specify gcc flags (CXXFLAGS) particularly for a specific module?
I am building a new NS3 module recently. In my code, I use something new features of the C++11 (c++0x), I want to add a gcc flags (CXXFLAGS) "-std=c++0x" to the waf configuration system.
I tried to ...
2
votes
1answer
102 views
waf 1.7: How do you copy an environment?
I have a waf file that is building several libraries for multiple targets, multiple platforms and, in some cases, multiple architectures.
I currently have the environment set up according to waf ...
0
votes
1answer
108 views
Using a non standard c compiler with Waf
I have a non standard c compiler, for the example lets call it comp.
How can I use it with Waf?
I see that in all the examples:
def options(ctx):
ctx.load('compiler_c')
def configure(ctx):
...
2
votes
0answers
175 views
C++ header-only library with waf
Good day,
before fully migrating to waf (1.7.5), I have tried to create a simple project of this structure:
wafproject
├── application
│ ├── main.cpp
│ └── wscript
├── library1
│ ├── foo1.hpp
│ ...
3
votes
1answer
2k views
Is there any node-waf for Node.js on windows?
I am trying to install the 'png' module from Node.js using the following command:
npm install png
however I am getting the following error:
node-waf configure build
'node-waf' is not ...
5
votes
2answers
907 views
Choosing between Scons and Waf in Large Projects
We are thinking about converting a really large project from using GNU Make to some more modern build tool. My current suggestion is to use SCons or Waf.
Currently:
Build times are around 15 ...
1
vote
2answers
64 views
Having autotools targets being built by WAF
We're trying to incrementally move away from autotools to WAF.
Most of our sub-projects are autotools and we don't really want to convert them to WAF at once.
Do you have any tips or things to keep ...
0
votes
2answers
197 views
Finding local external libraries with Waf
I'm creating a wscript file capable of linking external libraries that are stored in the project directory, rather than installed to the system, but I am unsure of the best way of doing so.
...
0
votes
1answer
155 views
How to use a static library created by a custom task?
I want use waf to trigger a makefile to build an other library. For this I created the following task:
def build(bld):
def run(self):
bld_dir = self.generator.bld.path.get_bld()
...
0
votes
0answers
132 views
How do I create a new compiler profile with Waf?
I've found this very helpful page in the API docs of the Waf build system:
My wscript looks like this:
def options(opt):
opt.load('compiler_c')
def configure(conf):
from ...
4
votes
2answers
148 views
How to prevent Waf from renaming object files?
I am using Waf to build a C project and gcov to have some test code coverage. However, Waf calls gcc in a way that produces foo.c.1.o from source file foo.c that confuses gcov when searching for the ...
1
vote
1answer
393 views
How to build NS-3 to use C++0x/C++11 libraries?
I need to use data structures like unordered_map within my code in network simulator NS-3.
It is using waf builder to compile the source code.
I am confused that where should I add -std=c++0x to be ...
6
votes
1answer
477 views
gdb doesn't find source files compiled by clang++
When compiling my project with clang++, the path to the source files is apparently not included in the object code. This means that gdb is unable to find source files to display code with. For ...
0
votes
1answer
109 views
waf failed on freeBSD - Traceback (most recent call last)
I am trying to run a waf on freeBSD 7.1
But it fails as:-
junos-olive# ./waf
Traceback (most recent call last):
File "./waf", line 148, in <<module>module>
junos-olive#
The line 148 ...
1
vote
1answer
180 views
making qt ignore specific header include files
I have a running project made in qt . For building purpose I m using waf build tool. To get the same project up and running from waf I need to add
#include "file.moc"
at the end of some files to ...
0
votes
1answer
129 views
c++ finding memory leak
I am trying to run valgrind with waf. The command is ./waf --command-template="valgrind %s" --run program-name.
I receive an internal error for valgrind. What else can I try if even valgrind fails ?
...
0
votes
1answer
151 views
waf : passing compiler flags to qt's moc
I my trying to run a project using waf which uses boost library . To overcome a problem I need to pass and -DBOOST_TT_HAS_OPERATOR_HPP_INCLUDED argument to MOC. I tried doing so in the wscript as
...
2
votes
1answer
214 views
Integrate protocol buffers into WAF
I managed to compile my .proto files like this:
def build(bld):
bld(rule='protoc --cpp_out=. -I.. ${SRC}', source='a.proto b.proto', name='genproto')
Seems to work nice, when I make changes to ...
2
votes
1answer
686 views
Cannot Install py2cairo on Mac OSX
I am trying to install py2cairo on a framework build (Mac OSX Lion) of python 2.7.3 using brew. I have been unsuccessful this far.
First, I tried a simple
brew install py2cairo
This seems to work ...
2
votes
1answer
251 views
Gstreamer and Taglib unresolved external symbol
I am trying to create a small Gstreamer-Qt based program in Windows using msvc and building it with waf.I am getting this linker error even through i have linked all library required.
...
3
votes
1answer
544 views
Finding Libraries using pkg-config in Windows
I am, trying to find the gstreamer lib in windows (msvc) using pkg-config
pkg-config gstreamer-0.10 --cflags --libs
but i am getting any result like this
Package gstreamer-0.10 was not ...
0
votes
2answers
433 views
can not open boost header files on 64 bit windows
I have download boost libraries and ran bootstrap.bat and .\b2 . Trying to run it on 64 bit I m getting these errors
C:\cygwin\home\vickey\tunebasket\p2p>python waf build --with-tests ...
1
vote
1answer
129 views
waf automating qt configuration
I am using waf wscript for making a project. The problem I am facing is including the qt specific headers: lib and libpath. I have fair knowledge of pkg-config tool. There are .pc files in ...
4
votes
2answers
193 views
vim creating alias for frequently used command [duplicate]
Possible Duplicate:
Aliasing a command in vim
So I have to edit waf wscript files a lot . Everytime I execute this command to set the filetype
set filetype=python
is there a way to set ...
1
vote
2answers
270 views
waf configuration for qt debug file to be included
I m writing a wscript for implementing code which includes QDebug
#include <QDebug>
In my wscript for configuring qt I have these lines specified
def configure(conf):
...
2
votes
1answer
165 views
waf pkg-config uselib_store variable
I m trying to set the include path for gstreamer for one of my project using waf . I think doing something like this should get the path
def configure(conf): ...
0
votes
1answer
771 views
Gstreamer include error in waf. gst/gst.h: No such > file or directory
I am trying to build a Gstreamer program using waf.I am having some trouble including gstream files with waf.
I am getting an error.
[ 4/37] qxx: test/Playback/GSTEngine.cpp ->
...
0
votes
1answer
1k views
Error when installing node.js on ubuntu 12.04- “Project not configured (run 'waf configure' first) ”
So I'm following a node.js installation process (from a repository) with the following basic steps.
git clone https://github.com/joyent/node.git
cd node
git checkout v0.6.16 #Try checking nodejs.org ...
2
votes
2answers
157 views
C++11 Polyfills
I am starting a new project that will be targeting MSVC, GCC (latest), GCC 4.3 ARM and more. The waf build system we have built has C++11 feature detection of the compiler.
I now have preprocessor ...

