User rq - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:26:29Z http://stackoverflow.com/feeds/user/4596 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1933552/cmake-complains-about-wrong-number-of-arguments/1938826#1938826 2 Answer by rq for Cmake complains about wrong number of arguments rq 2009-12-21T08:14:56Z 2009-12-21T08:14:56Z <p>Are you sure you have the variables set correctly? I've checked with this CMakeLists.txt file, and it works correctly:</p> <pre><code>CMAKE_MINIMUM_REQUIRED(VERSION 2.6) PROJECT(test CXX) ADD_LIBRARY(wtdbo SHARED test.cc) SET(WTDBO_SOVERSION 1) SET(VERSION_SERIES 1) SET(VERSION_MAJOR 0) SET(VERSION_MINOR 0) SET_TARGET_PROPERTIES( wtdbo PROPERTIES VERSION ${VERSION_SERIES}.${VERSION_MAJOR}.${VERSION_MINOR} SOVERSION ${WTDBO_SOVERSION} DEBUG_POSTFIX "d" ) </code></pre> <p>However, if I comment out the <code>SET(WTDBO_SOVERSION 1)</code> line I get the same error message as you do. The help for <code>set_target_properties</code> is as follows, so you are definitely doing the right thing:</p> <blockquote> <p>Targets can have properties that affect how they are built.</p> <pre><code>set_target_properties(target1 target2 ... PROPERTIES prop1 value1 prop2 value2 ...) </code></pre> <p>Set properties on a target. The syntax for the command is to list all the files you want to change, and then provide the values you want to set next. You can use any prop value pair you want and extract it later with the <code>GET_TARGET_PROPERTY</code> command.</p> </blockquote> http://stackoverflow.com/questions/521230/are-there-any-libraries-frameworks-for-scons/623629#623629 6 Answer by rq for Are there any libraries/frameworks for SCons? rq 2009-03-08T14:07:31Z 2009-12-19T14:30:20Z <p>You may be interested in Google's <a href="http://code.google.com/p/swtoolkit/" rel="nofollow">Software Construction Toolkit</a> that was <a href="http://google-opensource.blogspot.com/2009/02/software-construction-toolkit-released.html" rel="nofollow">made open source in February 2009</a>. It adds new features on top of SCons, such as improved Visual Studio project file generation, unit test functions, and distributed builds with distcc or incredibuild.</p> http://stackoverflow.com/questions/1896945/svn-how-to-undo-a-merge-without-commit/1896954#1896954 8 Answer by rq for svn: How to undo a merge (without commit)? rq 2009-12-13T16:24:06Z 2009-12-13T16:24:06Z <p>Revert recursively from the top of your working copy:</p> <p><code>svn revert -R .</code></p> <p>You will need to manually delete the files that were added. As in after reverting, the files added will remain on disk but they will be in a non-tracked state ("? foo")</p> http://stackoverflow.com/questions/1450348/git-equivalents-of-most-common-mercurial-commands/1450420#1450420 4 Answer by rq for Git equivalents of most common Mercurial commands? rq 2009-09-20T06:14:10Z 2009-12-07T09:49:42Z <p><a href="http://wiki.sympy.org/wiki/Git%5Fhg%5Frosetta%5Fstone#Rosetta%5FStone" rel="nofollow">The Git-HG rosetta stone is not bad</a></p> <p>There are a few other gotchas between the two not mentioned there. This list was cribbed from my own blog post when I went the other way (git -> hg).</p> <p><strong>Hg</strong> .hgignore, syntax: glob is the same behaviour as git's .gitignore.</p> <p><strong>Git</strong> .git/config, ~/.gitconfig, use git-config to modify the values<br> <strong>Hg</strong> .hg/hgrc, ~/.hgrc, hg config is a non-core extension</p> <p><strong>Git</strong> git commit -v<br> <strong>Hg</strong> hg diff | less; hg commit</p> <p><strong>Git</strong> gitk<br> <strong>Hg</strong> hg view, or Tortoise Hg.</p> <p><strong>Git</strong> git rebase<br> <strong>Hg</strong> <a href="http://mercurial.selenic.com/wiki/RebaseExtension" rel="nofollow">hg rebase</a>. For <code>git rebase --interactive</code> there's <a href="http://mercurial.selenic.com/wiki/HisteditExtension" rel="nofollow">hg histedit</a>, or Mercurial Queues</p> <p><strong>Git</strong> git push URL ; git remote add origin URL<br> <strong>Hg</strong> hg push URL; $EDITOR .hg/hgrc ; [paths] default = URL</p> <p><strong>Git</strong> gitk, git log origin/master..HEAD<br> <strong>Hg</strong> hg outgoing</p> <p><strong>Git</strong> git format-patch RANGE<br> <strong>Hg</strong> hg email -m filename -o</p> <p><strong>Git</strong> git gui<br> <strong>Hg</strong> Nothing really equivalent. There's "hg record" for "git add -i", but it is less user friendly.</p> <p><strong>Git</strong> git add . ; Note the dot<br> <strong>Hg</strong> hg add ; No dot needed.</p> http://stackoverflow.com/questions/1822055/using-scons-to-perform-validation/1824818#1824818 2 Answer by rq for Using scons to perform validation rq 2009-12-01T08:46:52Z 2009-12-01T14:09:17Z <p>You need to provide scons with an input file. You currently have the source file hard-coded into the builder "recipe". It is better to use the SOURCE placeholder in the action string and then specify the input file when you call the builder.</p> <pre><code>xmlValidator = Builder(action='xmllint --noout --schema '+ pwd+'/path/schema.xsd $SOURCE') Env.Append(BUILDERS = {'ValidateXML' : xmlValidator}) Env.ValidateXML(source='file.xml') </code></pre> <p>This will always run the validation, so you might want to have it output the result to a file. To do that you would use the TARGET placeholder, for example:</p> <pre><code>xmlValidator = Builder(action='xmllint --schema '+ pwd+'/path/schema.xsd $SOURCE --output $TARGET') Env.ValidateXML(source='file.xml', target="out.txt") </code></pre> http://stackoverflow.com/questions/1762044/out-of-souce-build-with-scons/1763804#1763804 1 Answer by rq for Out of souce build with scons? rq 2009-11-19T14:48:44Z 2009-11-19T14:54:23Z <p>In your <code>SConstruct</code> file, you use a variant dir:</p> <pre><code>SConscript("main.scons", variant_dir="build", duplicate=0) </code></pre> <p>Then in <code>main.scons</code> you set up everything as usual:</p> <pre><code>env = Environment() env.Program(target='foo', source=Split('foo.c bar.c')) </code></pre> <p>It's possible to do this without hardcoding the variant dir into the SConstruct by (ab)using repositories, but that approach has its bugs. For the record, you would run the above as follows to build in another directory:</p> <pre><code>mkdir mybuild cd mybuild scons -Y .. -f ../main.scons </code></pre> <p>The easiest and most workable is to just use <code>variant_dir</code>. You then run this as usual from the top level source directory. All the build artefacts get produced in the <code>build</code> sub directory.</p> http://stackoverflow.com/questions/1605350/how-can-i-grab-the-color-of-a-pixel-on-my-desktop-linux/1605380#1605380 4 Answer by rq for How can I grab the color of a pixel on my desktop? (Linux) rq 2009-10-22T06:37:29Z 2009-11-05T21:31:31Z <p>This does the trick, but requires python-gtk:</p> <pre><code>import gtk.gdk import sys def PixelAt(x, y): w = gtk.gdk.get_default_root_window() sz = w.get_size() pb = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB,False,8,sz[0],sz[1]) pb = pb.get_from_drawable(w,w.get_colormap(),0,0,0,0,sz[0],sz[1]) pixel_array = pb.get_pixels_array() return pixel_array[y][x] print PixelAt(int(sys.argv[1]), int(sys.argv[2])) </code></pre> <p>On Ubuntu 9.10, this also requires python-numpy or it segfaults the python interpreter on the <code>get_pixels_array</code> line.</p> http://stackoverflow.com/questions/1662118/scons-foiling-an-ide-when-using-alternate-build-directories/1663507#1663507 0 Answer by rq for scons: foiling an IDE when using alternate build directories rq 2009-11-02T20:32:14Z 2009-11-02T20:32:14Z <p>You could always tell scons not to duplicate source files in the build directory:</p> <pre><code>SConscript('src/SConscript', variant_dir='build', duplicate=0) </code></pre> http://stackoverflow.com/questions/1621899/what-are-the-good-open-source-implementations-of-java-virtual-machine/1621907#1621907 4 Answer by rq for What are the good open source implementations of Java Virtual Machine ? rq 2009-10-25T19:56:52Z 2009-10-25T20:44:20Z <p><a href="http://openjdk.java.net/" rel="nofollow">Hotspot</a> (GPL, by Sun)</p> <p><a href="http://harmony.apache.org/" rel="nofollow">Harmony</a> (Apache, also the basis for Android's Dalvik VM)</p> <p><a href="http://jamvm.sourceforge.net/" rel="nofollow">JamVM</a></p> <p><a href="http://java.sun.com/products/cldc/" rel="nofollow">CLDC - Connected Limited Device Configuration</a>(Sun again) This one is not really open source, but the source code is available.</p> http://stackoverflow.com/questions/1621827/never-ending-git-story-what-am-i-doing-wrong-here/1621889#1621889 4 Answer by rq for Never-ending GIT story - what am I doing wrong here? rq 2009-10-25T19:50:36Z 2009-10-25T19:55:39Z <p>The biggest clue is the error in the push:</p> <pre><code>! [rejected] master -&gt; master (non-fast forward) </code></pre> <p>This means that you're subversion branch and your remote git master branch are not agreeing on something. Some change was pushed/committed to one that is not in the other. Fire up <code>gitk --all</code>, and it should give you a clue as to what went wrong - look for "forks" in the history. Look out for the branches <code>[origin/master]</code>, <code>[master]</code> and <code>[trunk]</code>. The origin could well be on a different branch to your current master - <code>git svn rebase</code> can cause that.</p> <p>Generally if you are committing via svn and git, you're better off keeping the git master branch identical to the subversion one and working on another branch in git. See <a href="http://stackoverflow.com/questions/796991">this other SO question about working with git and subversion</a>.</p> http://stackoverflow.com/questions/1620006/cmake-post-build-step/1621231#1621231 1 Answer by rq for CMake Post Build Step rq 2009-10-25T15:50:24Z 2009-10-25T15:50:24Z <p>For Makefile-based generators you can check the <code>CMAKE_BUILD_TYPE</code> variable and act upon its value:</p> <pre><code>if(CMAKE_BUILD_TYPE STREQUAL Debug) message(STATUS "Do debug stuff") elseif(CMAKE_BUILD_TYPE STREQUAL Release) message(STATUS "Do release stuff") elseif(CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo) message(STATUS "Do release with debug info stuff") elseif(CMAKE_BUILD_TYPE STREQUAL MinSizeRel) message(STATUS "Do minimal size release stuff") endif() </code></pre> <p>For Visual Studio based builds, <a href="http://stackoverflow.com/questions/1372105/">this SO question</a> seems to suggest that <code>CMAKE_BUILD_TYPE</code> also works with VS 2005+.</p> http://stackoverflow.com/questions/1593881/cmake-how-to-make-a-script-for-copying-data-files-accompanying-my-program/1601054#1601054 0 Answer by rq for cmake: How to make a script for copying Data files accompanying my program rq 2009-10-21T14:07:43Z 2009-10-24T09:47:18Z <p>As recently seen in <a href="http://stackoverflow.com/questions/1514747">this question</a>, you can use <a href="http://www.cmake.org/cmake/help/cmake2.6docs.html#command%3Aconfigure%5Ffile" rel="nofollow">configure_file</a> to copy files to the build directory:</p> <pre><code>configure_file(${CMAKE_CURRENT_SOURCE_DIR}/input.txt ${CMAKE_CURRENT_BINARY_DIR}/output.txt COPYONLY) </code></pre> <p>That does it once at build time and only when needed.</p> http://stackoverflow.com/questions/1595450/how-do-i-use-waf-to-build-a-shared-library/1599351#1599351 1 Answer by rq for How do I use waf to build a shared library? rq 2009-10-21T07:58:24Z 2009-10-21T07:58:24Z <p>Assuming you are using the latest version of waf (1.5.9 at the time of writing), wild cards can be specified via the <a href="http://freehackers.org/~tnagy/wafdoc/wafadmin.Build.BuildContext-class.html#glob" rel="nofollow"><code>glob()</code></a> method on the build context. So you can write the following:</p> <pre><code>bld.new_task_gen( features = 'cc cshlib', source = bld.glob('*.c'), target='mylib') </code></pre> <p>If you were using an older version of waf that doesn't have glob, then there is a method <code>find_sources_in_dirs</code> that you can use:</p> <pre><code>lib = bld.new_task_gen( features = 'cc cshlib', target = 'mylib') lib.find_sources_in_dirs('.') </code></pre> <p>This method is still in Waf but is slated for deprecation and may eventually disappear.</p> <p>The <code>srcdir</code> and <code>blddir</code> variables are optional now so you don't need them - they default to "." and "build" anyway. You shouldn't prepend "lib" to the target name, this is done automatically in a platform specific way (on Windows no lib is added and shared libraries use .dll). Debug vs Release build is a surprisingly thorny issue. Originally Waf included this feature, but it was dropped at some point and never re-added. It's a common request on the mailing list so may resurface in the future. Meanwhile you could do a lot worse than use <a href="http://bazaar.launchpad.net/~gjc/waf/cmd/annotate/head%3A/wafadmin/Tools/cflags.py" rel="nofollow">gjc's cflags module</a>. Just add it to your project directory. The final wscript would then be:</p> <pre><code>VERSION='0.0.1' APPNAME='mylib' def set_options(opt): opt.tool_options('compiler_cc') opt.tool_options('cflags', tooldir='.') def configure(conf): conf.check_tool('compiler_cc') conf.check_tool('cflags', tooldir='.') def build(bld): bld.new_task_gen( features = 'cc cshlib', source = bld.glob('*.c'), target=APPNAME) </code></pre> <p>And to set up a debug build you would run the following:</p> <pre><code>./waf configure -d debug </code></pre> <p>If you are using libraries in their own sub-directories, then you should probably have a top level wscript and use the <a href="http://freehackers.org/~tnagy/wafdoc/wafadmin.Build.BuildContext-class.html#add%5Fsubdirs" rel="nofollow"><code>bld.add_subdirs()</code></a> technique to add library/program directories. Each sub-directory would have its own wscript_build file. You can then use the <a href="http://freehackers.org/~tnagy/wafbook/ch08s02.html" rel="nofollow"><code>export_incdirs</code></a> and <a href="http://freehackers.org/~tnagy/wafbook/ch08s02.html" rel="nofollow"><code>uselib_local</code></a> properties to specify the correct include directories between library and program "modules".</p> http://stackoverflow.com/questions/1514747/what-is-different-about-the-cmake-command-configurefile-on-windows/1587317#1587317 1 Answer by rq for What is different about the CMake command configure_file on Windows? rq 2009-10-19T07:05:14Z 2009-10-19T07:05:14Z <p>You have to <a href="http://www.cmake.org/cmake/help/cmake2.6docs.html#command%3Aconfigure%5Ffile" rel="nofollow">specify the complete directory path</a>. The following works on Windows and takes out-of-source builds into account too:</p> <pre><code>configure_file(${CMAKE_CURRENT_SOURCE_DIR}/dot_alpha_16.bmp ${CMAKE_CURRENT_BINARY_DIR}/test/dot_samples/dot_alpha_16.bmp COPYONLY) </code></pre> http://stackoverflow.com/questions/1052759/eclipse-cdt-scons/1053176#1053176 0 Answer by rq for Eclipse CDT + SCons rq 2009-06-27T16:51:26Z 2009-10-16T18:36:23Z <p>I've tried <a href="http://quirkygba.blogspot.com/2009/02/it-has-been-while-since-i-last-tried.html" rel="nofollow">Waf in Eclipse CDT</a> before now, SCons would be really similar. The solution was to create an empty Makefile project, then simply change "make" to "scons" in the options. On Windows that would probably need the scons.bat file in your path. That is not much better than creating a dummy Makefile that has an <code>all:\n\tscons</code> type pattern in it, but is the least work.</p> <p>The <a href="http://www.eclipse-plugins.info/eclipse/plugin%5Fdetails.jsp?id=816" rel="nofollow">SConsBuilder plugin</a> is not a good idea. It has a whole bunch of hard coded python code in there that it spits out to a SConstruct. It hasn't been updated in ages and a lot of code is probably deprecated in SCons by now. I think a better approach is to do what SCons does for Visual Studio, or what CMake does for Eclipse CDT. That means generating a .cproject file on the fly based on your build configuration.</p> <p>I wrote an <a href="http://gist.github.com/211962" rel="nofollow">Eclipse project generator for Waf</a> at one point, which walks the build nodes gathering source files and spits out a .project and .cproject file. Similar to how CMake does it, but Waf's default behaviour of creating a variant directory means you don't have to deal with out-of-source build issues. It uses only part of the Waf API so it would be possible to convert it to SCons with some small-ish amount of work. In other words, there's nothing much out there. The .cproject format is not really documented anywhere and is really ugly compared to the Java version.</p> <p>I didn't get on too well with CDT though - it is a long way behind the Java dev tools - and I still use Vim with <code>:make</code>, so it was all a bit academic in the end.</p> http://stackoverflow.com/questions/1564696/cmake-output-name-for-dynamic-loaded-library/1566114#1566114 2 Answer by rq for CMake output name for dynamic-loaded library? rq 2009-10-14T13:07:17Z 2009-10-14T13:07:17Z <p>You can unset the prefix with this line:</p> <pre><code>set_target_properties(foo PROPERTIES PREFIX "") </code></pre> http://stackoverflow.com/questions/1552694/splitting-a-git-repository/1552780#1552780 4 Answer by rq for splitting a git repository rq 2009-10-12T04:53:48Z 2009-10-12T04:53:48Z <p><code>git filter-branch</code> is the way to go. Make a copy of the repo for each subdirectory, then in each copy run a line like this replacing "myclassname" with your actual class name:</p> <pre><code>git filter-branch --subdirectory-filter myclassname -- --all </code></pre> http://stackoverflow.com/questions/1542803/is-there-a-version-of-os-getcwd-that-doesnt-dereference-symlinks/1542818#1542818 4 Answer by rq for Is there a version of os.getcwd() that doesn't dereference symlinks? rq 2009-10-09T09:35:07Z 2009-10-09T09:35:07Z <p>Workaround: <code>os.getenv('PWD')</code></p> http://stackoverflow.com/questions/237064/c-nested-classes-driving-me-crazy/237072#237072 8 Answer by rq for C++ Nested classes driving me crazy... rq 2008-10-25T21:52:43Z 2009-10-02T08:33:02Z <p>Add a couple of constructors and a pointer to the parent class.</p> <pre><code>#include &lt;string&gt; #include &lt;vector&gt; class myList { public: std::vector&lt;std::string&gt; vec; myList(): items(this) {} // Added class Items { public: Items(myList *ml): self(ml) {} // Added void Add(std::string str) { self-&gt;vec.push_back(str); // Changed }; myList *self; //Added }items; }; int main() { myList newList; newList.items.Add("A"); } </code></pre> <p>You need the myList() constructor, so it registers instances of itself with the instance of the inner class member variable. Then you need the Items constructor to store the pointer to the outer myList class instance. Finally in the Add method, you need to reference vec in the stored myList instance.</p> <p>As Catskul points out, the Item constructor mustn't actually do anything with the myList pointer it receives. I'd also like to say that though this answer is closer to the original intent, steveth45's answer is closer to what you would want to do in a real program.</p> http://stackoverflow.com/questions/1461774/getting-the-scons-root-directory/1462129#1462129 1 Answer by rq for getting the scons root directory rq 2009-09-22T19:32:14Z 2009-09-22T19:32:14Z <p>You should use "#" to indicate the top of the source directory.</p> <pre><code>print Dir('#').abspath </code></pre> <p>This version works if you use a <a href="http://www.scons.org/doc/HTML/scons-user/c3271.html" rel="nofollow">variant directory</a> too. For example in <strong>SConstruct</strong>:</p> <pre><code>SConscript('main.scons', variant_dir="build") </code></pre> <p>Then in <strong>main.scons</strong>:</p> <pre><code>print Dir('.').abspath print Dir('#').abspath </code></pre> <p>The first will print <code>/path/to/project/build</code>, whereas the second will show the correct <code>/path/to/project</code>.</p> http://stackoverflow.com/questions/1438535/how-to-run-a-command-at-compile-with-in-makefile-generated-by-cmake/1441035#1441035 1 Answer by rq for How to run a command at compile with in Makefile generated by CMake ? rq 2009-09-17T20:02:18Z 2009-09-17T20:02:18Z <p>This works on Linux (and on Mac presumably) but requires plenty of escaping to get it to pass the CMake parser:</p> <pre><code>set(datestr "date '+%m:%d:%y,%H:%M'") add_definitions(-DDATETIME="\\"$$\(${datestr}\)\\"") add_executable(foo foo.c) </code></pre> <p>It may depend on you using Makefiles too. The $$ is needed to escape to a single $. The parenthesis need escaping to not end the command definition. We need to add a real \" to the command line to use it as a string in C, so double escapes are needed there to come out as a single \ on the command line. And we need to surround the date part in "" so the line is not space-sensitive, just in case.</p> <p>I used a datestr variable to not have to add even more escaping.</p> <p>My foo.c is:</p> <pre><code>char *now = DATETIME; int main() { printf("%s\n", now); } </code></pre> <p>I have no idea how you could do similar on Windows though.</p> http://stackoverflow.com/questions/1435473/force-scons-to-use-sconstruct-file-as-a-global-dependency/1438629#1438629 2 Answer by rq for force scons to use Sconstruct file as a global dependency rq 2009-09-17T12:42:29Z 2009-09-17T12:42:29Z <p>If you need to add the SConstruct as a dependency of one of your targets then either you are doing it wrong or there is a bug in SCons.</p> <p>For example if we are talking about the compilation flags. Say you want to change from -O0 to -O2. In the simplest case, you would have:</p> <pre><code>env = Environment(CCFLAGS = '-O0') env.Program(target = 'foo', source = 'foo.c') </code></pre> <p>You run scons, it compiles foo.c to foo.o and creates foo(.exe) from that. And if you change this to:</p> <pre><code>env = Environment(CCFLAGS = '-O2') env.Program(target = 'foo', source = 'foo.c') </code></pre> <p>then scons will rebuild all the targets that are defined in env. This is because the command line is an implicit dependency for a target. So changing the CCFLAGS will change the dependency value, which will rebuild the "foo" target.</p> <p>Maybe your real question is more like "Why does scons not rebuild my targets even though I have changed the command line options?". Either way you perhaps need to think in terms of the real dependencies involved rather than adding an artificial one to try and force a rebuild.</p> http://stackoverflow.com/questions/1431458/preventing-vim-to-auto-expand-folds/1431756#1431756 2 Answer by rq for Preventing vim to auto-expand folds rq 2009-09-16T08:47:00Z 2009-09-16T12:54:37Z <p>Try removing block from the "foldopen" option.</p> <pre><code>:set foldopen-=block </code></pre> <p>Or maybe the foldclose=all option...</p> <pre><code>:set foldclose=all </code></pre> http://stackoverflow.com/questions/1034138/antcpptasks-vs-scons-vs-make/1035179#1035179 3 Answer by rq for ant+cpptasks vs. scons vs. make rq 2009-06-23T20:58:58Z 2009-09-16T08:37:59Z <p>For cross compiling I think your best choices are either <a href="http://www.cmake.org/" rel="nofollow">CMake</a> or <a href="http://sources.redhat.com/autobook/" rel="nofollow">Autotools</a>. Especially if you can compile your code for multiple architectures/platforms. I typically compile a subset of my code on the native machine for unit testing purposes and all of it for the target platform. CMake handles this especially well, as it lets you specify where the cross compiled libraries live. So rather than searching for the cross compiled libpng in /usr/lib, it can be told to look in /opt/arm-eabi-gcc/ or wherever you have the tool chain libraries installed on your build machine. You can create multiple build directories for the different variants and manually compile each variant with make, or trigger the lot with a braindead hand-rolled recursive make.</p> <p>Ant has the drawback that it is basically as good or as bad as vanilla Make, with the added disadvantage that you are using something that is not particularly mainstream for C or C++. You have to deal with all your own dependencies - both the internal ones, such as C file to header file to library or executable, and also external dependencies such as having to link with 3rd party libraries. Plus I don't think the Ant C tasks are really maintained that much. Everyone I've seen that uses Ant for C advocates calling out to GCC with exec tasks.</p> <p>SCons is better, but cross compiling is not its strong point. It is not a "build system" like CMake or Autotools either, it is only a build tool. As it says on their wiki, <a href="http://www.scons.org/wiki/FrequentlyAskedQuestions#head-00ce208eece451fe9879c6f8dd1c45b56f4c76d1" rel="nofollow">it is pretty much "Make in Python"</a>. It does have built in handling for dependencies though, meaning you don't have to roll your own there with "gcc -MM -MD" or whatever, so that is an advantage over Make. SCons also has support for detecting 3rd party libraries that are installed, but the way it is usually done can add a lot to your build time. Unlike other systems, SCons runs the checking stage every time you run it, though most results are cached. SCons is also infamous for its long build times, though for 50 files that would not be an issue. Cross compilation support in SCons is non-existent - you have to roll your own. Typically you force the build to be like a Unix platform, then override the name of the C compiler. Building multiple variants or separating the build directory from the source directory is full of gotchas, which makes it less suitable if you cross and natively-compile your code.</p> <p>CMake and Autotools have the dependency problems figured out quite well, and autotools' cross compilation support is mature. CMake has had cross compilation for over a year now, since version 2.6.0. You get those features for free, plus others like packaging and running unit tests ("make check" or similar targets). The downside to both of these tools is they require bootstrapping. In the case of CMake, you have to have the CMake binary installed to create the Makefiles or Visual Studio solution files. In the case of Autotools it is slightly more complicated because not everybody who compiles the software would need automake and autoconf installed, only those that need to change the build system (adding new files counts as changing the build system). The 2 stage bootstrapping (configure.ac -> configure, configure + Makefile.in -> Makefile) is conceptually a bit trickier to understand.</p> <p>For the edit: Cross compiling is an extra headache in build systems for the reason that it adds complexity to the auto-detection of programs and libraries. SCons doesn't deal with this problem, it leaves that up to you to sort out. Ant similarly does nothing. Autoconf handles this in the autotools case, but you may have to provide "--with-libfoobar=/some/path" on the command line each time you configure or face broken linking when it tries to use /usr/lib in the link phase. CMake's approach is a little more heavywieght with the toolchain file, but it means you don't have to specify all of you tools and libraries (CC, CXX, RANLIB, --with-ibfoo=, etc) as they are figured out from a standard convention.</p> http://stackoverflow.com/questions/1130433/how-to-avoid-unchecked-conversion-warning-in-java-if-you-use-legacy-libraries/1341212#1341212 0 Answer by rq for How to avoid unchecked-conversion-warning in Java, if you use legacy libraries? rq 2009-08-27T13:46:13Z 2009-09-15T07:15:44Z <p>You may be able to avoid the problem by <strong>compiling the code as Java 1.4 source</strong>, even with the latest javac:</p> <pre><code>javac -source 1.4 *.java </code></pre> <p>Since there are no generics used it will compile warning free as 1.4 source. This may help when using legacy Java libraries.</p> <p>I had this issue when compiling the code produced by the Java IDL compiler.</p> http://stackoverflow.com/questions/1381238/why-are-some-net-projects-hosted-on-code-google-com/1381298#1381298 0 Answer by rq for Why are some .NET projects hosted on code.google.com? rq 2009-09-04T20:05:25Z 2009-09-04T20:05:25Z <p>Google Code also provides <a href="http://googlecode.blogspot.com/2009/04/mercurial-support-for-project-hosting.html" rel="nofollow">Mercurial</a> and <a href="http://googlecode.blogspot.com/2008/07/looks-good-to-me-source-code-review.html" rel="nofollow">code review</a>. Maybe more coders have GMail accounts than the MS equivalent?</p> http://stackoverflow.com/questions/589691/how-can-i-emulate-vims-search-in-gnu-emacs 8 How can I emulate Vim's * search in GNU Emacs? rq 2009-02-26T08:49:36Z 2009-09-02T19:19:07Z <p>In Vim the * key in normal mode searches for the word under the cursor. In GNU Emacs the closest native equivalent would be:</p> <pre><code>C-s C-w </code></pre> <p>But that isn't quite the same. It opens up the incremental search mini buffer and copies from the cursor in the current buffer to the end of the word. In Vim you'd search for the whole word, even if you are in the middle of the word when you press *.</p> <p>I've cooked up a bit of elisp to do something similar:</p> <pre><code>(defun find-word-under-cursor (arg) (interactive "p") (if (looking-at "\\&lt;") () (re-search-backward "\\&lt;" (point-min))) (isearch-forward)) </code></pre> <p>That trots backwards to the start of the word before firing up isearch. I've bound it to C-+, which is easy to type on my keyboard and similar to *, so when I type <code>C-+ C-w</code> it copies from the start of the word to the search mini-buffer.</p> <p>However, this still isn't perfect. Ideally it would regexp search for <code>"\&lt;" word "\&gt;"</code> to not show partial matches (searching for the word "bar" shouldn't match "foobar", just "bar" on its own). I tried using search-forward-regexp and concat'ing \ but this doesn't wrap in the file, doesn't highlight matches and is generally pretty lame. An isearch-* function seems the best bet, but these don't behave well when scripted.</p> <p>Any ideas? Can anyone offer any improvements to the bit of elisp? Or is there some other way that I've overlooked?</p> http://stackoverflow.com/questions/1357982/gvim-make-command-does-not-work/1358007#1358007 4 Answer by rq for gvim :make command does not work rq 2009-08-31T15:26:36Z 2009-08-31T15:26:36Z <p>Do you have <a href="http://www.vim.org/htmldoc/options.html#%27autochdir%27" rel="nofollow">autochdir</a> enabled? That may change to another directory. </p> <p>Check with <code>:pwd</code> to see if the current directory is what you expect.</p> <p>Try running <code>:!ls</code> to see if the Makefile exists.</p> http://stackoverflow.com/questions/1290415/any-way-to-execute-ds-code-from-cartridge/1318677#1318677 2 Answer by rq for Any way to execute DS code from cartridge? rq 2009-08-23T14:13:44Z 2009-08-23T14:13:44Z <p>Short answer: No.</p> <p>The memory map of the Nintendo DS doesn't include any location that maps to the ROM in the DS cartridge.</p> <p>On the GBA the area 08000000-09FFFFFF was mapped to the external ROM in the Game Pak. This mapping is included in the DS too, presumably for backwards compatibility and to enable some GBA game and DS game interaction. But it <em>only</em> maps to the GBA slot and so only to GBA cartridges.</p> <p>You could use this read from GBA cartridges in the GBA slot and run code from there in DS mode. In fact early unofficial rewritable cartridges used this method to run code. However this will not work on the new DSi, which has no such slot. Plus these Slot-2 cartridges are harder to find nowadays, with the regular DS-style cartridges being far more popular.</p> <p>The usual way to create large games that need to run more code than there is memory is to either use <a href="http://en.wikipedia.org/wiki/Overlay%5F(programming)" rel="nofollow">code overlays</a> or write your game in a scripting-type language that can load and unload code dynamically.</p> http://stackoverflow.com/questions/1182125/making-the-yui-testlogger-show-only-tests-that-fail 0 Making the YUI TestLogger show only tests that fail? rq 2009-07-25T13:50:55Z 2009-07-26T07:50:35Z <p>I've been using the YUI Test framework to do TDD with JavaScript but the default TestLogger shows all sorts of messages, not just the FAIL ones. This makes scanning the log for failures an exercise in tedium, or you have to play whack-a-mole on the filter checkboxes. Is there any way to make the toggle switches on the logger window stay the same between page refreshes? Or have the Logger only show the tests that have failed?</p> <p>You can see in <a href="http://developer.yahoo.com/yui/examples/yuitest/yt-advanced-test-options.html" rel="nofollow">this example</a> that the PASS and INFO dominate when you have several tests and it is too easy to miss the FAIL messages.</p> <p><img src="http://img24.imageshack.us/img24/935/yuitest.png" alt="YUI Test Logger screenshot"></p> <p>I've looked at the <a href="http://developer.yahoo.com/yui/docs/YAHOO.tool.TestLogger.html" rel="nofollow">API for the TestLogger</a>, which hints at there being some options. Sadly the options are not described at all. I only use YUI for this feature so I'm not an expert in the API, so can anyone lend me a hand?</p> http://stackoverflow.com/questions/1896945/svn-how-to-undo-a-merge-without-commit/1896958#1896958 Comment by rq on svn: How to undo a merge (without commit)? rq 2009-12-13T16:35:12Z 2009-12-13T16:35:12Z This is totally <i>not</i> the way you should have done it! http://stackoverflow.com/questions/1822055/using-scons-to-perform-validation/1824818#1824818 Comment by rq on Using scons to perform validation rq 2009-12-01T14:09:50Z 2009-12-01T14:09:50Z OK, good to know. I've edited the example so it makes sense, just in case. http://stackoverflow.com/questions/1714236/go-command-line-arguments/1714495#1714495 Comment by rq on Go command line arguments rq 2009-11-11T15:39:16Z 2009-11-11T15:39:16Z @Kinopiko: Take a look at go-mode.el in the misc/emacs directory of the source code repo. http://stackoverflow.com/questions/521230/are-there-any-libraries-frameworks-for-scons/529487#529487 Comment by rq on Are there any libraries/frameworks for SCons? rq 2009-10-26T19:39:02Z 2009-10-26T19:39:02Z Interesting to see that Ardour has switched to Waf recently. Paul Davis went into a bit more detail as to why on FLOSS weekly 86 <a href="http://twit.tv/floss86" rel="nofollow">twit.tv/floss86</a> http://stackoverflow.com/questions/1593881/cmake-how-to-make-a-script-for-copying-data-files-accompanying-my-program/1601054#1601054 Comment by rq on cmake: How to make a script for copying Data files accompanying my program rq 2009-10-23T07:12:57Z 2009-10-23T07:12:57Z <code>cmake --help-full</code> FTW! :-) http://stackoverflow.com/questions/1605350/how-can-i-grab-the-color-of-a-pixel-on-my-desktop-linux/1605380#1605380 Comment by rq on How can I grab the color of a pixel on my desktop? (Linux) rq 2009-10-22T08:47:42Z 2009-10-22T08:47:42Z 200 pix-per-second - you could pass a list of the pixels to check and just pull it out of the pixel array. Should be ok-ish speed wise. http://stackoverflow.com/questions/1595450/how-do-i-use-waf-to-build-a-shared-library/1599351#1599351 Comment by rq on How do I use waf to build a shared library? rq 2009-10-21T11:12:11Z 2009-10-21T11:12:11Z Handy that one, thanks. http://stackoverflow.com/questions/1552694/splitting-a-git-repository/1552780#1552780 Comment by rq on splitting a git repository rq 2009-10-14T11:39:12Z 2009-10-14T11:39:12Z The flag is --prune-empty - it isn't turned on with the subdir filter. http://stackoverflow.com/questions/1552694/splitting-a-git-repository/1552780#1552780 Comment by rq on splitting a git repository rq 2009-10-12T14:03:28Z 2009-10-12T14:03:28Z Nice one, glad I helped :-) http://stackoverflow.com/questions/182408/manual-for-cross-compile-a-c-application-from-linux-to-windows/182456#182456 Comment by rq on Manual for Cross-Compile a c++ application from linux to windows? rq 2009-10-11T14:12:06Z 2009-10-11T14:12:06Z <code>wine hello.exe</code> should do it! http://stackoverflow.com/questions/1435473/force-scons-to-use-sconstruct-file-as-a-global-dependency/1438629#1438629 Comment by rq on force scons to use Sconstruct file as a global dependency rq 2009-09-17T14:39:31Z 2009-09-17T14:39:31Z I believe in the .sconsign.dblite cache file it stores the command line from last time as part of the hash. http://stackoverflow.com/questions/1429059/in-visual-studio-how-to-visualize-code-line-length-for-non-test-code-only/1429115#1429115 Comment by rq on In Visual Studio, how to visualize code line length for non-test code only? rq 2009-09-15T19:26:36Z 2009-09-15T19:26:36Z Greater than about 100 char lines causes problems in side by side diffs even on large res monitors. I see the 80 char limit as an elegant width from a more civilized age http://stackoverflow.com/questions/320759/synchronizing-code-with-two-subversion-repositories/320832#320832 Comment by rq on Synchronizing code with two subversion repositories rq 2009-09-15T07:11:02Z 2009-09-15T07:11:02Z Have you installed git on the server? Is the installed bin dir in your $PATH? I use this with git 1.6.0.2, maybe git-receive-pack has changed names since? http://stackoverflow.com/questions/1042373/cant-add-yahoo-pipes-to-google-reader/1399653#1399653 Comment by rq on can't add yahoo pipes to google reader rq 2009-09-09T20:02:24Z 2009-09-09T20:02:24Z I could add the RSS feed <a href="http://pipes.yahoo.com/pipes/pipe.run?_id=fa3405521b5bb6b18e272cb35549e295&amp;_render=rss" rel="nofollow">pipes.yahoo.com/pipes/&hellip;</a> without problems. http://stackoverflow.com/questions/1357982/gvim-make-command-does-not-work/1358124#1358124 Comment by rq on gvim :make command does not work rq 2009-09-09T19:56:28Z 2009-09-09T19:56:28Z I wonder what the problem was? Does csh read .cshrc even for non-interactive sessions (csh is awful, so it probably does).