Tagged Questions

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.

learn more… | top users | synonyms

9
votes
2answers
1k views

CMake or Waf for D project

We are looking for adequate build tool for a desktop GUI application to be written in D (using Qt toolkit), consisting of several native libraries, using 3rd party C-lib(s). It has to build on Linux ...
8
votes
3answers
643 views

Why has nobody created an open source build system for the brain dead?

I want to build a shared library. GNU/Linux is the development and target platform. C is the implementation language. I can't decide how I want to setup the build system and keep flitting around ...
5
votes
4answers
769 views

Waf generating Visual Studio projects?

Can the Waf build system generate Visual Studio project files for C/C++?
3
votes
1answer
14 views

Waf: Specify library name for python extensions

building libraries with waf is nice and I like the lib<targetname> naming scheme. But when I use is with boost::python, I'd like to get rid of it: I'd like the librarie's name to be like the ...
3
votes
1answer
231 views

How do I suppress '-arch', 'x86_64' flags when compiling an OpenGL/SDL application with Waf on OSX?

I need to suppress "-arch x86_64 -arch i386" flags Waf is passing to gcc. I am building an SDL/Opengl application. If I link against 32 bit SDL runtime I get error Undefined symbols for ...
3
votes
1answer
163 views

Going mad trying to compile against OpenSSL/libcrypto

I have been trying to do this for nearly 3 days now. Its driving me nuts. As you can imagine I'm quite new to C++. Can anyone give me step by step instructions to do a hello world program making ...
3
votes
3answers
843 views

Build automation by using platform specific project files or by using project generators?

There are some build systems that are able to generate platform specific project files like Visual Studio sln,vcproj,vcxproj files or XCode xcodeproj projects under OS X. One of them is CMake but I ...
3
votes
2answers
116 views

Is there a way for a program to detect if it was called by MSBuild or not?

I'm looking in the environment but I can't see anything that I could use. Any ideas? I'm trying to submit a patch for in Waf a bug that only appears when running the build under MSBuild (...yes I ...
3
votes
2answers
747 views

Is there a way to debug a subprocess using pydev?

I'm using Eclipse / PyDev trying to find a way to debug code that uses subprocess.Popen to create a child process: I want to be able to debug the child process that is created. The problem is that I ...
3
votes
3answers
2k views

How do I use waf to build a shared library?

I want to build a shared library using waf as it looks much easier and less cluttered than GNU autotools. I actually have several questions so far related to the wscript I've started to write: ...
3
votes
3answers
1k views

How do I use colour with Windows command prompt using Python?

I'm trying to patch a waf issue, where the Windows command prompt output isn't coloured when it's supposed to be. I'm trying to figure out how to actually implement this patch, but I'm having trouble ...
3
votes
3answers
557 views

What is the best way to integrate an external build tool into Eclipse?

I've just started using Eclipse for Python development since we can make use of a lovely plugin I've found to enable distributed pair-programming. Anyway, the next step to getting Eclipse to ...
2
votes
1answer
49 views

why there a .lock-wscript file after I run node-waf build

after I run node-waf configure and node-waf build, a .lock-wscript show in my folder, what's this? even I run node-waf clean, it still there. shall I keep it or remove it?
2
votes
2answers
78 views

Tracking code versions in an executable

I have a reasonable sized ( around 40k lines) machine learning system written in C++. This is still in active development and I need to run experiments regularly even as I make changes to my code. ...
2
votes
0answers
107 views

How do I force Waf to build only for “-arch i386” target on OSX and not “-arch x86_64 -arch i386”?

Waf is adding "-arch x86_64 -arch i386" and trying to create universal binaries. Linking is failing because I only have 32 bit runtimes and Waf is trying to create a universal binary. How do I get ...
2
votes
3answers
249 views

is there any way to configure waf to build c++ program in mac os?

I just suffer a problem that the all the things works well on my ubuntu. However, I want to get things work on my mac, bad thing happens. it shows the following errors cc1plus: error: unrecognized ...
2
votes
1answer
216 views

Waf (build tool): PHONY targets like Make?

how do you set a target - maybe Waf calls them "commands" - to always be executed? That is to be like PHONY targets in Make? I'm using Waf to build - among other things - a Visual Studio solution, ...
2
votes
1answer
173 views

How do i add compile options for only one of the files of a library in WAF?

I am experimenting with waf for my d project. One of the nice features of D is the "import" of entire files into the code at compile time. To do this you have to specify the folders that will be ...
2
votes
2answers
2k views

Can't configure node.js for make install on OS X (Snow Leopard)

I cloned the node git repo but the "waf" build tool that comes with node seems to not work with the latest version of Python. $ ./configure Traceback (most recent call last): File ...
2
votes
1answer
588 views

WAF, SCons or did I overlook something

I am looking for a make alternative (for lots of reasons which I will keep to myself for now). My needs are something that will compile c/c++ and C# and run static analysis and unit tests. It must ...
2
votes
1answer
120 views

How can I add a code that is always executed by Waf before exit?

I want to make Waf generate a beep when it finishes the execution of any command that took more than 10 seconds. I don't know how do add this and assure that the code executes when Waf exits. This ...
1
vote
1answer
122 views

How to compile the c++ source files, generated in run-time, using waf?

I have protobuf proto-files in source tree. I want to generate the source files from proto-files on every change and on first run (e.g. I create new proto-file). Then, I want to compile shared library ...
1
vote
1answer
49 views

Waf: How to output a generated file?

I have a file I want to send to the build directory after it's been pushed through a python script. How would I do this in waf? For example, if I had a file like this: VERSION=%%VERSION%% ...
1
vote
1answer
81 views

Building fortran library with waf, installing .mod file

I use waf (http://code.google.com/p/waf/) to build a fortran library (which also uses some c-code). The corresponding wscript looks like this: def build(bld): bld( features = ...
1
vote
1answer
49 views

how to install a library with a different name in waf build system?

I want to build a library with waf, but install it under a different name than the target name. It seems you can do bld.shlib(..., install_path='${PREFIX}/lib') but I need to be able to do ...
1
vote
1answer
51 views

How to avoid library multiple checks in waf?

I'm trying to use different modules (with independent wscript files) across several projects, so that modules can be developed in a one place and can be checked out in many places. I have a project's ...
1
vote
1answer
42 views

Checking for compiler optimization flags in waf

I have begun using the waf build system as an alternative to CMake. So far, it has been a great experience. However, I cannot figure out a good way to conditionally pass optimization flags to the ...
1
vote
1answer
101 views

How to generate a typelib for gir file with waf

I use the following wscript_build snippet to build a vala library with its gir file: lib = bld.shlib ( features = 'c cshlib', target = 'sample', name = 'libsample', vnum = '0.0.0', ...
1
vote
1answer
43 views

How do I get Anjuta to higlight errors/lines produced by my build system (waf)?

Waf outputs errors like the following Waf: Entering directory `/home/atomos/dc_mmo/netclient/build' [47/53] c: c_lib/c_lib.c -> build/c_lib/c_lib.c.1.o In file included from ...
1
vote
1answer
426 views

Compiling native C++ module for Node.js, linking to openSSL/libcrypto fails

I'm using Cygwin/Windows and I'm trying to build a native module for node.js. I intend to make use of the OpenSSL Library. I have installed openssl from the Cygwin package manager. I have the ...
1
vote
2answers
147 views

is there any Web Application Firewall for asp.net?

I want to hardening my website against simple dos/xss/sqli/etc... but I don't want to delve into security programming for now so I want to use a ready made class or library something like ...
1
vote
2answers
107 views

URLScan and percent signs

So I just ran into a stupid problem in which users could not download files that had a percent sign in it. This is an IIS6/Win2k3 box. It wound up being URLScan. I had to un-set two things in ...
1
vote
1answer
217 views

Unable to get WAF to run

I am trying to build the Monotooth library on Ubuntu and there is a native component which needs to be compiled. The distro from github has a wscript file and requires WAF to build. However, ...
1
vote
1answer
927 views

How to debug filesystem “access denied” errors on win32?

I'm having a hell of a time with our build scripts right now: I'm using Waf to drive our build process, and everything works great, except on Windows, where I am getting intermitent errors during ...
1
vote
1answer
478 views

How can I check for a specified header file in Waf?

I'm using waf to build a C program. I'd like to check for the existence of a particular header file during the configuration phase. Is there a way to do that?
0
votes
1answer
14 views

How to make node-waf build binaries with debug symbols?

Running node-waf with --verbose shows it uses g++ with -g. It seems to be default. I can't find an obvious way to tell node-waf to build node.js extensions without debug symbols. Is there a straight ...
0
votes
1answer
16 views

waf -how to add external library to wscript_build file

I tried to add an external library to my waf: the winmm.lib library it looks like this now: srcs = ['timers.cpp'] LIBS ='winmm.lib'; create_lib('timers', srcs,LIBS) it doesn't work. It says I ...
0
votes
1answer
27 views

periodic crashes in cl.exe, kernelbase.dll

I frequently have the following crash from cl.exe. This happens both when compiling and running other a help command on cl. This is happening on Windows Server 2008, but I think this happens sometimes ...
0
votes
1answer
87 views

Waf throwing errors on c++ builds

Our project contains a lot of c++ sources, up until now we were sing make to build everything, however this takes ages. So I stumbled upon waf, which works quite well and speeds up the build a lot. ...
0
votes
1answer
1k views

How do I get node-waf to install?

First, props to whoever did node.js. I've been using it for less than a day and I'm already thinking about using it for stuff I use Python for now. In fact, whoever did node.js should think about ...
0
votes
1answer
102 views

How do I change CFLAGS to -g -O0 when compiling node.js from source?

I tried: CFLAGS="-g -O0" ./configure But it's still using the default flags -g -O3 when make. Any way to work around?
0
votes
2answers
143 views

C++ Why can't the linker see my files?

Building a native module for Node.js under Cygwin / Windows: I have a monkey.cc file with this: #include <monkey/monkey.h> running node-waf configure build I get the following ...
0
votes
1answer
2k views

I'm Getting Cannot set Visibility or call Show, ShowDialog Exception

I'm using WAF (Wpf Application Framework) to create a dialog as shown in the ModelView sample application. I am trying to put up a simple AboutBox by mirroring the code for putting up the ...
0
votes
2answers
583 views

How can I make a Python extension module packaged as an egg loadable without installing it?

I'm in the middle of reworking our build scripts to be based upon the wonderful Waf tool (I did use SCons for ages but its just way too slow). Anyway, I've hit the following situation and I cannot ...