Questions tagged [precompiled]
154 questions
2
votes
1 answer
Change the number of cores OpenMPI can "see"
I am running an executable (I don't have access to source code) that calls mpirun. I'm getting the following error which is common if more cores are requested than available on the CPU:
There are not enough slots available in the system to satisfy…

khaverim
- 3,386
- 5
- 36
- 46
2
votes
2 answers
How to precompile ASP.NET 4.0 to a Single DLL with VS 2010
I recently upgraded from VS 2003 where I was working on a ASP.NET 2.0 website to VS 2010 where I have migrated to ASP.NET 4.0. So far it has been a big headache to get my site compiling with the new version. One problem was that my aspx.cs pages…

dcompiled
- 4,762
- 6
- 33
- 36
2
votes
2 answers
How do I deploy a pre-compiled ASP.NET web application?
I have a web service implemented in ASP.NET 2.0 and have pre-compiled it using the aspnet_compiler.
I have no clue now how to deploy it to IIS, can someone point me in the right direction? I am using IIS 6.0 on a Windows Server 2003 machine.
I have…

mmattax
- 27,172
- 41
- 116
- 149
2
votes
1 answer
CMake, Qt, gcc and precompiled headers
I'm (once again) struggling with the creation of precompiled headers in conjunction with gcc and Qt on the Apple platform.
When now creating my precompiled header I use a code section (based on good old "PCHSupport_26.cmake") to extract the compile…

doberkofler
- 9,511
- 18
- 74
- 126
2
votes
1 answer
Adding Behavior Extension to PreCompiled Web Site
I'm trying to add the CORS headers to a WCF service which is part of a precompiled web site project in VS 2012.
The error
The type 'EnableCrossOriginResourceSharingBehavior, MyWebSite, Version=0.0.0.0, Culture=neutral' registered for extension…

JNF
- 3,696
- 3
- 31
- 64
2
votes
2 answers
How to set the name of the precompiled headers folder in qmake?
I am writing a cross-platforms desktop application using qt creator as an IDE. Today, I started working on the Linux port of the application and encountered a problem related to qmake.
On Windows, qmake creates the folder TARGET which contains the…

Faisal Azahrani
- 123
- 1
- 9
2
votes
1 answer
Ace editor with rails 4 precompiled assets madness
I have been trying to integrate the Ace editor to a Rails 4 project and couldn't get it to work in production.
The editor renders but -obviously enough, it can't load the mode-* files. I tried to add the whole ace tree to the compiled assets hoping…

Abe Dadoun
- 145
- 1
- 10
2
votes
0 answers
How can I use the pre-compiled binaries to update to clang 3.3 on Mac OS 10.6.x?
I'm trying to install/update my clang from Apple clang version 1.7 (tags/Apple/clang-77) (based on LLVM 2.9svn) to clang version 3.3. I've downloaded the pre-compiled binaries into usr/bin/, as suggested by other posts (How can I update clang to 3.3…

anon82
- 71
- 6
2
votes
3 answers
Can I use precompile symbol to determine which code fragment would be compiled when I switching target framework in Visual Studio
We can switch to different .NET Framework target in Visual Studio after 2008.
I have a project, and I want to build 2 different target Frameworks assembly of it.
If my target Framework is 2.0, I want it to build some code, and when I switch to…

redjackwong
- 1,568
- 2
- 12
- 14
2
votes
2 answers
how to stop the pre-compile in C?
Look at the code in config.h:
#if (API_TYPE == 1)
#define URL_API @"https://dapi.xxx.com/1.1/"
#elif (API_TYPE == 2)
#define URL_API @"https://tapi.xxx.com/1.1/"
#elif (API_TYPE == 3)
#define URL_API @"https://api.xxx.com/1.1/"
#else
…

qiushuitian
- 1,261
- 4
- 19
- 31
2
votes
4 answers
Rails - image.png Isn't Precompiled
I'm attempting to deploy a web application on Amazon's EC2 servers, and I have the code up on the server. Everything looks like it's working, but when I go to the home page, I get a 500 error message and the production.log file gives me the…

Harley Sugarman
- 283
- 1
- 3
- 10
2
votes
2 answers
images precompiled, heroku keeps complaining on some
I added an image to the /app/assets/images folder, logo-small.jpg
Then I added this line to my view
= link_to image_tag('logo-small.jpg'), root_path, :class => 'brand'
Then I precompiled,
rake assets:precompile RAILS_ENV=production
git add, git…

wachichornia
- 1,178
- 14
- 31
2
votes
1 answer
Making changes to a precompiled website
As seems my life at present, I have inherited yet another project that needs changing.
However this code has been precompiled (and guess what...)
I have what puports to be some of the source code, and a set of assemblies form the temp folder.…

Matt
- 1,596
- 2
- 18
- 32
2
votes
0 answers
How do I process a request for a web page of a pre-compiled web application which is referenced in another web application?
Our company would like to give a pre-compiled version of our web application to a 3rd party so they can add their own pages and modules to it.
In trying to accomplish this, I've so far done the following:
Compiled our main web app as a Web…

AviJ
- 143
- 7
2
votes
1 answer
Could not load file or assembly App_Web_ * with a precompiled ASP.NET website project
I'm getting this problem on a very specific page and I'm not sure how to fix it.
I've already found several SO questions (such as ASP.NET corrupt assembly "Could not load file or assembly App_Web_*" and Could not load file or assembly…

user849924
- 318
- 3
- 9