Questions tagged [pre-compilation]

77 questions
0
votes
1 answer

Maximum value for IIS .NET Compilation Batch Time-out

What is the maximum value for the IIS -> .NET Compilation -> Batch -> time-out ? i need to set it to maximum in order to avoid compilation cannot be completed within the time-out period, the compiler reverts to single-compilation mode for the…
Hui Fei
  • 15
  • 3
0
votes
1 answer

Rails asset pipeline: Compile external libraries only once to decrease deployment time

I have a bunch of external javascript libraries in my Rails project which are all included in the application.js, so they are precompiled on every deployment to Heroku, which runs for a long time. Do you have any suggestions how to decrease the…
0
votes
1 answer

Fortran90 Makefile with pre-compilation and modules

I'm trying to write a Makefile to compile a Fortran90 project that consists of several source files containing subroutines and modules. To make things more complicated, I'm using pre-compilation (creating *.for files from *.F files). I could not…
stineb
  • 461
  • 1
  • 5
  • 11
0
votes
1 answer

Rails only precompiles *some* files on production

I have a strange issue where only some of our assets are being pre-compiled on production. Our application.css file is compiled and updated, but our mobile.css file hasn't been compiled since July, and the site still points to this older…
elstgav
  • 1,001
  • 7
  • 20
0
votes
1 answer

Virtual Directory in Precompiled site not able to host html files

I have a msdeployed site, which will contain a virtual directory to a separate folder of content. when I host non pre-compiled (I.E. my IIS hosting website points to my project directory in Visual Studio). On my local machine, I can redirect to a…
Nathan Tregillus
  • 6,006
  • 3
  • 52
  • 91
0
votes
2 answers

Disable compilation and linking in Code::Blocks?

Programming newbie, I want to disable the compiler/linker and just look at the precompile/ preprocessor's preprocessed code for a program...not sure what this would be called or what the usual method is for doing something like this. Using the GNU…
0
votes
3 answers

C-Macros produces unexpected behavior

I'm trying to make my header file easily changeable with macros. I'm debugging my code and it seems these MACROS are not doing what they are supposed to. Can someone tell me how I achieve the following effect? LED_ID_AMS etc. #define LED_NUMBER …
Flying Swissman
  • 818
  • 2
  • 14
  • 39
0
votes
1 answer

Static files are served up in development but not in production

I am running rails 3.2.11. I am using a JS plugin (epiceditor) that requires me to have several static files that the js calls. In development, I am able to access the files via asset pipeline easily. In production, I have already set serve static…
Zhen
  • 12,361
  • 38
  • 122
  • 199
0
votes
0 answers

Where are compiled queries stored on Database?

While using prepared statements in java, we say SQL queries are precompiled. I just want to know these queries are precompiled where? At java end or at database end. And if these queries are precompiled at database end then they are stored where ,…
user1147070
  • 491
  • 7
  • 21
0
votes
2 answers

trouble with precompilation. trying to deploy a rails app with heroku

see this https://help.heroku.com/tickets/89264 basically, I updated my config/environments/production.rb file and followed this advice https://devcenter.heroku.com/articles/rails-asset-pipeline#compiling-assets-locally, but it still isn't working. i…
Adam Zerner
  • 17,797
  • 15
  • 90
  • 156
0
votes
1 answer

How to set up a local LESS environment

How would you set up a local environment that would allow you to see LESS in-browser, locally? So far, I can only get it to work from a remote server, and it's totally aggravating. I've downloaded SimpLESS, and it's done virtually nothing for me. I…
0
votes
1 answer

Rails assets precompilation removes functions from global scope (TypeError: object is not a function). How to get them back?

I have such a js code: function Global(params) { ... } var g = { onDocLoad: function() { // on DOM load I instantiate the Global function-constructor // which is above this line, so it is already in scope var global = new…
Green
  • 28,742
  • 61
  • 158
  • 247
0
votes
1 answer

Can I use a pre-compiled module like a library of widgets?

I'm going to develop a system that generates gwt apps. These apps share a lot of widgets, and the compile time is very important for me. I'm wondering if I could prepare a set of widgets, wrap them in a module without an entrypoint, compile them…
TeamBanana
  • 179
  • 1
  • 10
0
votes
0 answers

Installing additional threaded version of Tcl/Tk and run code on certain nodes in a cluster

I need to paralleling a code written in tcl/tk language,in a cluster have 12 nodes my IP is registered to access to 4 nodes, every node have 4 processors with 2 cores each. the OS is linux centos 64 bit, I have the admin user pass and a normal user…
0
votes
1 answer

Is it worth precompiling jade + handlebars for server-side usage?

I am mixing jade with handlebars so that I don't have to write HTML and can have the nice syntax for data-related stuff. For example, this might be the template for header, header.handlebars.jade html {{#with user}} {{if user.username}} header…
ragulka
  • 4,312
  • 7
  • 48
  • 73