Questions tagged [recompile]

The act of compiling something again.

To "recompile" is to compile again. This could refer to simply compiling a second time, or compiling decompiled code.

191 questions
2
votes
1 answer

Can't recompile decompiled class files

I have a bit of Java I want to edit (it is a Minecraft mod) I decompiled the .class files (with jd-gui), edited what I wanted to, then attempted to recompile (with javac). I got hundreds of errors. I only edited a few lines though, so I tried…
zeel
  • 1,101
  • 1
  • 13
  • 31
2
votes
1 answer

C# ado.net stored procedure with recompile hint

Is there a way to add OPTION (RECOMPILE) in C# while executing stored procedure by System.Data.SqlClient? What I'm looking for in my imagination would be something like using (SqlConnection sqlConn = new SqlConnection(CONN_STR)) { …
Circle Hsiao
  • 1,497
  • 4
  • 22
  • 37
2
votes
0 answers

Angular recompile with Docker very slow after updating from Angular 11 to Angular 12

I tried a lot of stuff the last days and am very very thankful, if you could point me in the right direction on what I could try next. My current status: I have a running Angular application that is served via docker-compose with a bunch of other…
Tom
  • 89
  • 6
2
votes
1 answer

Access Public IP Address in DataSnap XE / Recompile DataSnap Framework

The "procedure TDSTCPChannel.Open" method in DSTCPServerTransport.pas uses the connected user's private IP address when it assigns "FChannelInfo". When I traced the HTTP transport, it used the user's public IP. If DSTCPServerTransport.pas were…
James L.
  • 9,384
  • 5
  • 38
  • 77
2
votes
4 answers

Decompile JAR, Modify it, Recompile again?

I have an older Jar file which I have to modify in order to get it to work. I have already decompiled it with jd-gui and changed the parts that needed change. I would now like to know what I have to do in order to get a jar back? I guess that I have…
TestModus
  • 59
  • 1
  • 4
2
votes
0 answers

Unity decompilation UnityEngine.UI referenced but no class in UnityEngine.UI found

I have created a small unity game (about 10 classes). Then I have decompiled it with dnSpy. Fixed a few issues and created a VS Project. My problem is that Assembly-CSharp.dll references some unity dlls. But curiosly everithing workes except…
2
votes
3 answers

Keep .exe timestamp from changing

Does anybody know of a way to prevent the timestamp of an executable from changing? I'm trying to generate a consistent hash code for the .exe but I think the timestamp may be preventing that from happening. Each time I recompile the code (VS C++)…
2
votes
1 answer

How to force SQL Server 2005 objects to be recompiled NOW

According to this running sp_recompile forces the object to be recompiled the next time that it is run I need it to be recompiled the moment I run the sp-recompile command, mainly to check for syntax errors and existence of objects on which the…
opensas
  • 60,462
  • 79
  • 252
  • 386
2
votes
1 answer

recompile apk after using javadecompilers.com

Is there any way to recompile the APK after decompilation using javadecompilers.com ? it's a nice tool to decompile APK and have java files, but i don't know how to recompile. i tried to import the decompiled files to android studio, eclipse,…
Fariss Abdo
  • 481
  • 1
  • 4
  • 8
2
votes
2 answers

C++: What to recompile when an inline function in a dynamic library changes?

I have two dynamic libraries and one executable: libOtherLibrary.so This is an existing open-source library written by someone else. libMyLibrary.so This is my own library that depends on libOtherLibrary.so. exe This is my own executable…
2
votes
1 answer

Why CMake recompile all library sources when only options for one file changed?

So, I have simple project with library compiled from two sources and executable with depends on this library: ./a.cpp #include "a.h" int a() { return X; } ./a.h int a(); ./b.cpp #include "b.h" int b() { return 2; } ./b.h int…
RiaD
  • 46,822
  • 11
  • 79
  • 123
2
votes
1 answer

SqlServer - OPTION RECOMPILE parallel execution behavior

I need clarification on how SQLServer behaves when you execute a parameterised procedure with OPTION RECOMPILE in parallel. Option Recompile: "You can force SQL Server to recompile the stored procedure each time it is run. The benefit here is that…
2
votes
4 answers

Extracting 'a' tags containing specific substring with Python's BeautifulSoup

Using BeautifulSoup, I would like to return only "a" tags containing "Company" and not "Sector" in their href string. Is there a way to use regex inside of re.compile() to return only Companies and not Sectors? Code: soup =…
Bob Hopez
  • 773
  • 4
  • 10
  • 28
2
votes
1 answer

recompiling PHP

I have compiled php with some optional extensions like APC (for caching),APD (for debugging) and other vital extensions. Now I need to install another extension called mhash (for encryption) and my question is that: Do i need to recompile php from…
2
votes
2 answers

Make install causes recompiles

I am writing a master makefile to compile and install multiple autoconf based libraries, which depend on each other. All works well for the first go. The issue is: if I am working on one of these libraries individually and do "make && make install"…
l.thee.a
  • 3,231
  • 6
  • 25
  • 28