Questions tagged [precompiled]
154 questions
0
votes
1 answer
How to add extra functionality to a compiled and hosted website in ASP.NET?
I have an ASP.NET 2.0 legacy website with me, in which I have to fix two bugs in the website.
The problem is that we ( me and client ) do not have the source code for this website.
All we have is the FTP where the compiled and hosted version of…

naveen
- 53,448
- 46
- 161
- 251
0
votes
1 answer
VirtualPathProvider Not Working on Hosting Environment
My .Net project works fine on Local IIS7 (Windows 7 IIS7 x86). But it does not work on hosting environment (W2008 Server x64 IIS7). I can fully control hosting environment. But I could not locate the error. When working locally I can access the USer…

HGMamaci
- 1,339
- 12
- 20
0
votes
0 answers
why my code cannot find the imported target's header files in cmake?
My project struct is like this:
.
├── CMakeLists.txt ->1
├── external
│ └── libuv
│ ├── CMakeLists.txt ->2
│ ├── include
│ │ ├── uv
│ │ │ ├── errno.h
│ │ │ ├── linux.h
│ │ │ ├──…

Joey
- 175
- 7
0
votes
0 answers
Visualize precompiled file (*.i) on c++builder
I am using c++builder, I have spent huge time to enable option to finally visualize the result of precompiled files without success, on vc++(just for good illustration) just going to project options->C/C++->Preprocessor->Process to file.
#define…

OverB
- 55
- 7
0
votes
1 answer
Problems after upgrading to Flutter 2.5, Could not build the precompiled application for the device
I've been having problems since upgrading to flutter 2.5. I also tried flutter clean and rebooted. But it was not resolved. Ask for help!
I did a flutter run with my phone, but it didn't work.
> flutter run
Launching lib/main.dart on lswlsw in…

LiDe
- 35
- 1
- 7
0
votes
1 answer
Why is clang not using the precompiled header?
// test.hpp
#include
// test.cpp
#include "test.hpp"
int main(){std::cout << "hello world" << std::endl;}
Let's precompile header:
clang++ -c test.hpp
Let's use the header
clang++ test.cpp -H
Output shows it is not using the…

programmer
- 41
- 6
0
votes
1 answer
Check if ASP.NET page exists with precompiled pages
I would like to check if an ASPX file exists before I open it because it is loadded dynamically. That should be quite easy by using the following code:
string directoryPath = Server.MapPath("~/Forms/");
string filePath = directoryPath + nameOfFile +…

Ferdi
- 1
0
votes
1 answer
Trying to run lua file from SOM imx6 on a Pi 2 -> nginx lua: bad header in precompiled chunk
When starting the nginx service on a raspberry pi 2, I get this error:
lua file : bad header in precompiled chunk.
When reading the lua file in Notepad++, I see normal text and jibberish:
The lua version is 5.1 I believe.
Is the file corrupted…

Bert
- 1
0
votes
0 answers
Sporadic: The file '.cshtml' has not been pre-compiled, and cannot be requested
Symptoms: ASP.NET MVC website sporadically crashes and all .cshtml pages requests fail with this error. The problem seems random and happens once or twice a month. The site may run for months with no issues then out of the blue it will stop serving…

Ziad
- 1
0
votes
1 answer
CMake Static Library linking (Precompiled .a)
I've been dealing with this problem day and night for a week. I've read every page on Google, Stackoverflow and Github.
CMakeLists.txt
cmake_minimum_required(VERSION 3.5)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED…

Mesut A.
- 1,618
- 1
- 10
- 11
0
votes
2 answers
Installing a precompiled library that depends on another in a bitbake recipe
I am trying to include pytorch/libtorch in our Yocto-based distribution and running into troubles when it comes to installing precompiled libraries with dependencies among them onto the target.
After trying to compile pytorch from source to no avail…

platisd
- 153
- 1
- 9
0
votes
1 answer
Extract aspx pages from precompiled asp.net web site
Is it in any way possible to go from a pre-compiled asp.net site and back to something resembling the original code (with markup that I can update in aspx and ascx files). I have lost the original code and is left with the precompiled version of the…

Nikolaj
- 429
- 4
- 16
0
votes
1 answer
IBM DB2 Obscure Error Code
When I try to precompile my COBOL application, using by running SUB on a JCL file, I get this error:
19.30.05 JOB08639 $HASP165 ZUSER13A ENDED AT SVSCJES2 - JCL ERROR CN(INTERNAL)
I've tried looking online with no success. Does anyone know what…

chustar
- 12,225
- 24
- 81
- 119
0
votes
0 answers
Precompile not working in razor pages
I am new to Razor Pages (and have never done MVC), and it would really help me learn if I could precompile, but I can't get it to work. I have a newly created project in Visual Studio with Razor 3.2.4 and WebPages 3.2.4.
My project has a single…

Jim S
- 1,069
- 3
- 10
- 17
0
votes
1 answer
Bind to custom input properties in C# Precompiled Azure Functions
I am attempting to use Custom Bindings and Patterns to Create an HTTP Triggered Azure Function that gets a file from Blob Storage. In my case the POST HTTP Request would know the attachment name.
In this article the documents discuss the pattern…

Justin Neff
- 182
- 3
- 17