pre-compilation Questions

4

We're developing a C++ library with currently over 500 hundred individual .cpp files. These are each compiled and archived into a static library. Even with a parallel build, this takes some minutes...

2

Solved

I am trying to refactor some code. My approach (using vi) is to copy my old libraries from /lib to /lib2. That way I can hack out big sections, but still have a framework to refactor. So I go ahea...
Hallel asked 12/8, 2019 at 18:44

5

Solved

During our build process we run aspnet_compiler.exe against our websites to make sure that all the late-bound stuff in ASP.NET/MVC actually builds (I know nothing about ASP.NET but am assured this ...
Tonytonya asked 14/11, 2008 at 11:26

2

Solved

I am using coffeescript+ruby-on-rails. The compilation of coffeescript into pure JS leads to an error if there is a syntax problem in the coffee code. On the browser when I run the app, I get this ...
Babysit asked 12/3, 2016 at 8:42

1

The autogenerated PrecompiledApp.config is causing me some headache. Im automating the deployment of an older web site and 50% of the time when I deploy I get this error: System.IO.IOException: Th...
Horseflesh asked 16/10, 2013 at 8:2

2

Solved

Here is a small piece of code : String a = "abc"; Console.WriteLine(((object)a) == ("ab" + "c")); // true Console.WriteLine(((object)a) == ("ab" + 'c')); // false Why ?
Hetman asked 8/4, 2015 at 13:40

3

Solved

I am thinking about the following problem: I want to program a microcontroller (let's say an AVR mega type) with a program that uses some sort of look-up tables. The first attempt would be to loca...
Impassion asked 22/1, 2015 at 16:8

2

Solved

I'm currently running a CI build and deploy using TFS 2013 for the build and Release Management 2013 for the deployment, though I need the web applications (WebForms) that I'm deploying to be preco...

0

I'm trying to pre-compile views for our MVC5.1 application to improve first load performance (see this question for more context). I'm playing with aspnet_compiler.exe: aspnet_compiler -p d:/path...
Grizzly asked 27/2, 2014 at 12:53

3

Solved

Looking at the Handlebars.js documentation for precompilation. The instructions are for OSX. Can this be done on Windows as well? If so, when they say to "install node and npm" does "node" refer ...

4

Solved

I have a web-project running in VS 2008. We have some global resource files (*.resx) in the App_GlobalResources folder for internationalisation. All this works like a charm on my local IIS installa...

4

Solved

I would like to pass some options to a compiler. The option would have to be calculated at compile time - everytime when 'make' is invoked, not when 'cmake', so execute_process command does not cut...
Cottage asked 17/9, 2009 at 12:23

1

Solved

Are fewer checks/less rigorous code analysis required to provide development environment error feedback and auto completion for programming languages that are composed largely of human-readable phr...
Scutcheon asked 22/5, 2012 at 13:7

2

Solved

I know that in the past there was an option -fprefix-function-name that would add a prefix to all generated symbols, it doesn't seem to be part of gcc anymore. Is there any other way to do this?
Ephesian asked 14/4, 2012 at 21:53

3

EDIT 4, 5 and 6 8 hours in, any more ideas are welcome :) Maybe this bug is already known and solved, but I get the behaviour I described in edit 2&3, when you have this in a .css.erb file in ...
Lindbergh asked 19/12, 2011 at 19:57

1

Running: bundle exec rake assets:precompile RAILS_ENV=production Takes about 6 minutes for 15 .js files of about 250kb total. It should not take this long surely? I see the 'Microsoft Console Ba...
Aneurysm asked 19/12, 2011 at 23:9

3

Solved

I was trying to: #define CommonAppData {commonappdata} but it yields: Compiler Error [ISPP] Expression expected but opening brace ("{") found. How to achieve this with Inno Setup PrePr...

11

Solved

For Python, it can create a pre-compiled version file.pyc so that the program can be run without interpreted again. Can Ruby, PHP, and Perl do the same on the command line?
Matta asked 19/5, 2009 at 17:54
1

© 2022 - 2024 — McMap. All rights reserved.