Hi, everybody,
Please help me this problem:
I do the example on the page: http://www.antlr.org/wiki/pages/viewpage.action?pageId=1760
in order use this example, i have built the grammar P on ANTLRWork 1.4 and generate code to have class PLexer and PParser.
But when i run this code on java Jcreator 4.5:
import org.antlr.runtime.*;
impor...
Here's my stripped-down setup.py script with non-code stuff removed:
#!/usr/bin/env python
from distutils.core import setup
from whyteboard.misc import meta
setup(
name = 'Whyteboard',
version = meta.version,
packages = ['whyteboard', 'whyteboard.gui', 'whyteboard.lib', 'whyteboard.lib.pubsub',
'whyteboar...
Hi,
I am trying to use dojo build system for minification and compressing of all dojo and custom modules into a single javascript file using the untjs.profile.js profile file. The sample code for this profile file is as follows:
dependencies = {
layers: [{
name: "dojo.js",
customBase: true,
discard: true,...
Hello everyone, I'm trying to build a project using xcode. The project is linked with a dynamic library and everything works fine when building in simulator mode.
My problem is every time i try to build in device mode i get the error
"id returned 1 exit status" (which is usually a lib link error).
I also get the warning "myLib.a file ...
I'm exploring the awesomeness of Ant 1.8.1's import ability. Here's my situation: I have a top-level Ant file (project.xml) that turns around and calls ant on another Ant file (say, neato_project.xml) which actually does the build, or clean or whatever.
I have 12 different project files that this top-level (project.xml) file can call, s...
We did a build of our app locally. It went smoothly without errors. But the build using anthill on onsite machine is giving errors like "cannot find symbol" in the class file generated. We downloaded the whole app in another machine here locally and the build was again went good. Want to know what may be possible issue?
The methods are ...
This question is related to this one. I have two Android projects inside Eclipse. One activity of one project calls an activity of the other project. This results in two independent applications being deployed on Android phone.
Is there any way to merge at build time (inside or outside Eclipse) both applications in only one so only an A...
I am trying to set up a proper way to do automatic versioning for my C# projects in .Net.
The requirements are:
the assembly is to be built only when is is not up to date. (normal behaviour in Visual Studio and via MSBuild)
When it is built the assembly is to get the proper version assigned.
I have found a solution to give me the ve...
After successfully building the distribution version of my app for submission to iTunes Connect, I selected Build and Archive, as recommended, and the Organizer window popped up. Why, wondered I. OK, if I click the Archived Applications tab it displays one archived application (unfortunately grayed out - don't know if that means anything...
I've read this question which advocates taking NSLog statements out of Release builds.
Is it acceptable to, instead of cluttering the main log up with junk, write it to Apple System Log instead, then it'd be hidden from the main log?
Or am I just overcomplicating things? Are there any instances where logging has been useful to you in p...
Our file structures is pretty good, organizing functionality in separate folders. My question is how do others work on applications that involves upwards of 500 JavaScript files.
We have written a maven plugin to concatenate these files together (also runs YUI compressor). However, this involves 3-10seconds of compiling for every ch...
I am trying to build google breakpad for windows. I don't get it. I tried installed autoconf and m4 for Windows which seems to work. But running
m4 CXXFLAGS=-m32 CFLAGS=-m32 CPPFLAGS=-m32 ./configure
results in
func_dirname ()
{
# Extract subdirectory from the argument.
func_dirname_result=NONE:0: m4: ERROR: EOF in string
aft...
anyone can tell me the ant build (internal) procedure, and how build.properties info is used?
by the way, I am opening a project with build.properties -- but the projects I was working on did not seem to have such a file (newbie question) can someone give me an intro? is that an eclipse generated file?
...
I have a Eclipse PDE build that creates a product. So far so good, I can create and run my product with the Headless PDE installer.
I want to further use my build product as a "Target-Platform" to develop add-ons on it. However, the problem I have is that this build does not contain the source code internally.
My question is, how can...
When build my application with Ant, it produces a ZIP file.
I have a sh file inside this zip, that is included as part of the build process. After each build I have to do chmod +x myFile.sh as ant fails to retain its original executable permissions.
How can I instruct ant to keep executable permissions to this file?
...
I work in a solution with many projects. Often, I need to recompile and it takes a minute or two, so I tend to switch to a web browser to kill that time. Sometimes I forget to look back and the build succeeded a few minutes before I noticed.
Is it possible to somehow get Visual Studio (just UI version, not command line) to beep at me if...
I'm certain this has been asked before, with with nearly 900k questions, it's hard to find things :)
We are starting a project where we want our C++ and Python to run both under a Unix environment but also under Windows. We want to make our project easy to contribute to as developers, and so we wish to have what each side feels is "nat...
while compiling android project in eclipse 3.4.2 , am getting The project cannot be built until the build path errors are resolved.
i got a temporary solution from the blog http://www.scottdstrader.com/blog/ether_archives/000921.html
The resolution was to force a resave of the selected projects (and their .classpath files):
Open th...
For some reason when I attempt to configure phc-0.2.0.3 oh my machine (Fedora Linux localhost.localdomain 2.6.34.6-47.fc13.i686 #1 SMP Fri Aug 27 09:48:44 UTC 2010 i686 i686 i386 GNU/Linux) I get the following error:
checking for boostlib >= 1.34.0... configure: error: We could not detect the boost libraries (version 1.34 or higher). If...
I have a custom annotation and it's processor & processorFactory. How do I configure my Ant build file such that:
The annotation processor is applied on annotated classes and generates source files inside "gen" folder
The generated source files(from annotation processing) could be used by other source files in project.
...