Questions tagged [precompiling]
20 questions
7
votes
1 answer
Obtaining the Pod of a module without explicitly exporting it
The documentation in Perl 6 programs, using the Pod 6 DSL, are actually parsed as part of the code; this makes that documentation available, inside the program, as the $=pod variable.
However, I'd like to have access to that variable in order to…

jjmerelo
- 22,578
- 8
- 40
- 86
3
votes
3 answers
PHP: optimum configuration storage?
My application gets configured via a lot of key/values (let's say 30.000 for instance)
I want to find the best deployment method for these configurations, knowing that I want to avoid DEFINEs to allow for runtime re-configuration.
I have thought…

Jerome WAGNER
- 21,986
- 8
- 62
- 77
2
votes
2 answers
Precompiling JSPs: Is that server specific?
Since JSPs adhere to a standard API, can I precompile them in my projects and then deploy the result on any server?
Specifically, I'm using Tomcat, JBoss and WebSphere.

Aaron Digulla
- 321,842
- 108
- 597
- 820
1
vote
1 answer
Visual Studio 2010 precompile or prebuild actions
I'm looking for ability to make some replacements in my code files in prebuild or precompile phase (user transparent). I was thinking about Visual Studio extension, but haven't found solution yet. Some way to access all files in solution/project or…

Silx
- 2,663
- 20
- 21
1
vote
1 answer
what converts aspx files into c#
which process or class is responsible for converting aspx files and data-binding expressions into c# ?
for example
<%# Eval("XXXXX") %>
is transformed into:
public void @__DataBind__control118(object sender, System.EventArgs e)
{
…

zebra
- 1,330
- 1
- 13
- 26
1
vote
1 answer
How to run OpenGL code with out compiling?
So I have some openGL code (such code for example)
/* FUNCTION: YCamera :: CalculateWorldCoordinates
ARGUMENTS: x mouse x coordinate
y mouse y coordinate
vec …

Rella
- 65,003
- 109
- 363
- 636
1
vote
1 answer
Creating .fxo shader file using fxc.exe
Does anybody know how to compile a single file containing various shaders (PixelShader, VertexShader, GeometryShader) using the fxc.exe tool provided by the DirectX 11 SDK?
The shader is used to create a tesselation-effect in a C++ programmed…

luQ
- 519
- 1
- 10
- 25
1
vote
1 answer
Separating header and source files after compiling .proto with Protocol Buffers
I'm working on the project with the a structure similar to the following:
root/inc/foo/bar/
root/src
I've just started to use Google Protocol Buffers and when I compile the code I found that I need add foo/bar/file.h to the file.cc file in order…

Lestat
- 49
- 1
- 7
1
vote
2 answers
Necessitas (Qt/Android NDK) qmake paths
I am running openSUSE 12.2 64-bit trying to compile an app in Necessitas alpha 4.1. It's a basic app and the code is likely not the issue. Through the course of tracing the issue I made sure to have all dependencies and tools.jar, which can…

MaKR
- 1,882
- 2
- 17
- 29
1
vote
3 answers
Assets precompiling error with jQuery UI plugin
I've been wracking my brains over this problem for the last couple of hours.
I have an issue with running rake assets:precompile RAILS_ENV=production --trace
due to the addition of jQuery UI into the mix.
// Libraries
//= require…

Vivek
- 621
- 7
- 18
0
votes
1 answer
Adding code to class files just before building - Objective C
I am looking to develop a framework, for which I dont want get into details.
Suppose if I am having 100+ classes with 1000+ methods in my iPhone application.
In this scenario I want to add NSLog in each method(at start or end or both) of each…

Abhishek
- 454
- 3
- 9
0
votes
0 answers
Can't Heroku push, failed to compile Rails
I have tried many times to git push heroku master my testing app and i always run to the same issue. I have been over many solutions from heroku push rejected, failed to compile Ruby app but none worked.
Here is my error message from…

PaulineTW
- 41
- 9
0
votes
1 answer
How can I unminify some css I scraped?
The best I can come up with is:
#!/usr/bin/env bash
filename=$1
cat "${filename}.css" | \
awk '{gsub(/{|;/,"&\n\t"); print}' | \
awk '{if(match($0,/[^\;]+}/)) {gsub(/}/,";\n&\n"); print}else{gsub(/}/,"\n&"); print}}' \
>…

hobs
- 18,473
- 10
- 83
- 106
0
votes
1 answer
How to get ASP.NET website precompilation to exclude a certain folder
The several different environments (e.g. live, demo etc) of my web app are differentiated by config settings in a folder called EnvironmentConfiguration. Whenever I update one of the sites, I delete the EnvironmentConfiguration folder from the…

David
- 15,750
- 22
- 90
- 150
0
votes
0 answers
Julia GraphPlot package error
I'm trying to run a Julia code which works with GraphPlot package. I have already added this package to Julia. But I'm getting the following error when I start running the code. Can someone please help me with this?
Failed to precompile GraphPlot…

ccc
- 574
- 2
- 9
- 22