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
4
votes
1 answer

Is it possible to change a value inside a Lua bytecode? How? Any idea?

I got a script that is no longer supported and I'm looking for a way to change the value of a variable in it... The script is encrypted (loadstring/bytecode/something like that) e.g.: loadstring('\27\76\117\97\81\0\1\4\4\4\8\0\') I can find what I…
4
votes
2 answers

Grunt.js dependency management

Is there a way to specify file dependencies in Grunt? I.e. if I have: global/page.jade project/index.jade -- includes global/page.jade project/about.jade -- includes global/page.jade project/test.jade and I change global/page.jade then I would like…
Philip Kamenarsky
  • 2,757
  • 2
  • 24
  • 30
3
votes
0 answers

How can I add code to .class files in java

I have a class file and I want to add some code to it. I decompiled it and got this package net.minecraft.client.main; import com.google.gson.Gson; import java.util.List; import joptsimple.OptionSet; import java.lang.reflect.Type; import…
3
votes
1 answer

Recompiling an ASP.NET Core Application in Rider without repeatedly rerunning it

I'm working on an ASP.NET Core MVC application in Rider in which I'm frequently editing the code and as a result having to repeatedly manually stop and start the application, which is highly inconvenient. To solve this, I tried various…
Arnav Borborah
  • 11,357
  • 8
  • 43
  • 88
3
votes
3 answers

exe checksum different after each recompile

So I'm trying to figure out how to get my exe to have the same hash code/checksum when it's recompiled. I'm using FastSum to generate the checksum. Currently, no code changes are made, I'm just rebuilding the project in VS and the checksum comes out…
3
votes
1 answer

Why is the original scala sbt project recompiled by when I build an exact copy of it in an other folder?

My plan is to take an existing project and slowly transform it to something else. To this aim I took the brutal approach and simply copied the folder of the project as it was to a new folder. When I ran sbt in the new folder, it resolved some…
sbtpr
  • 541
  • 5
  • 18
3
votes
2 answers

Twig : auto_reload option in production recommended?

When auto_reload option is true, it means when a template file is modified, Twig recompiles the file and then render the content. Question : Is auto_reload option set to true recommended in production environment? In my opinion, it should be set to…
Bogs Imba
  • 59
  • 5
3
votes
2 answers

symfony2 recompile container from controller

I want to recompile container from controller when I use $this->container->compile(); public function changeAction(Request $request) { //...... echo($this->container->getParameter('mailer_user')."\n"); /*$cmd='php ../app/console…
ghaziksibi
  • 471
  • 3
  • 12
3
votes
1 answer

how to modify smali code to delete 1 line in java code

I want to delete the 580th and 581th line in the java code below. this file is in system/framework/services.jar in android devices, so the steps I did are: decompile jar to smali change the smali file recompile the smali file to dex file pack it…
ChrisLv
  • 33
  • 1
  • 3
3
votes
2 answers

Can option "WITH RECOMPILE" be used to reduce timeouts from blocking?

I'm working on updated procedures that I inherited from someone who is no longer at the company. I have found procedures that include WITH RECOMPILE option after the header. In the notes it says that it was added "to mitigate timeouts from…
user275683
3
votes
0 answers

How to update and recompile nlme source code in R

I am attempting to update the ‘nlme’ package so that I can use great circular distances for the correlation in the gls command. I'm attempting to edit the source code with the changes specified here. I am unsure about how to proceed in re-compiling…
Sarah
  • 731
  • 7
  • 15
3
votes
3 answers

Visual C++ studio, recompiling only the modified files

I have two dll files made by around 1500 cpp files. When I need to edit one, I usually then recompile all the 1500 files from the start. But I heard there is a way to make Visual Studio recompile the modifies only, taking a lot less time... How do I…
kettlepot
  • 10,574
  • 28
  • 71
  • 100
3
votes
2 answers

Oracle and possible constant predicates in "WHERE" clause

I have a common problem with ORACLE in following example code: create or replace procedure usp_test ( p_customerId number, p_eventTypeId number, p_out OUT SYS_REFCURSOR ) as begin open p_out for select e.Id from eventstable e where…
infideltfo
  • 95
  • 1
  • 6
2
votes
2 answers

Do you recompile your java code if you upgrade your application servers or JVMs?

Just wondering what others in the Java world usually do with recompiling their binaries when they upgrade their applications servers or JVMs? Is it really necessary? Thanks! update: just want to clarify. The recompiling meant to recompile the code…
Xiang Shen
  • 21
  • 2
2
votes
3 answers

Why does javac recompile my .java although the .class is already updated?

I am told that javac is smart enough that it does not recompile the .java, in condition that this .java has a timestamp before that of .class. I just find it does not work like that in my machine, am I certainly wrong somewhere? my P.java is located…
zell
  • 9,830
  • 10
  • 62
  • 115
1 2
3
12 13