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
1
vote
1 answer

Is it possible to compile decompiled hex code?

Is it possible to compile a SoapHexBinary back to an .exe var str = new SoapHexBinary(File.ReadAllBytes(@"c:\test\test.exe")).ToString(); Console.WriteLine(str);
EZC404
  • 25
  • 1
  • 4
1
vote
5 answers

Can I re-compile a file with new code?

I have a question. I was wondering if you could re-compile code with another piece of code. For example (theoretical): main.c: #include void showme(); int main() { showme(); } void showme() { fprintf(stderr, "errtest, show…
Tim
  • 21
  • 2
1
vote
2 answers

make recompiles unchanged files

make recompiles source code files even if they are unchanged. To reproduce this behavior, I need to do: make clean, so that only *.90 files are left make save one of the *.f90 file, e.g. "touch bands.f90" make: bands.f90 is recompiled, which is…
CiPoint
  • 55
  • 3
1
vote
1 answer

Can't recompile the apk file with apktool

I decompiled an app with apktool_2.3.4 and i didn't make any changes to the app but when i run : apktool b app.apk I got the following error: I: Using Apktool 2.3.4 I: Checking whether sources has changed... I: Smaling smali folder into…
Moamen
  • 23
  • 1
  • 4
1
vote
1 answer

why is it necessary to drop and re-create dependents when altering locking scheme in Sybase?

I need to alter the locking scheme from allpages to datarows in a Sybase ASE 15.7 database. The docs says I need to drop and then re-create dependent compiled objects (SPs, triggers, views). This table has lots of dependent SPs and triggers. My…
tiv
  • 150
  • 1
  • 3
1
vote
0 answers

Angular: Image in assets not loading immediately

I have made an angular 6 project that connects to a back-end and fetches some data. The user of the application may upload pictures to the server, which I save inside the assets folder of my angular project. I have noticed that when a pictured is…
Theo Stefou
  • 389
  • 2
  • 16
1
vote
1 answer

How to patch and recompile axis2_1.6.1.wso2v14.jar in wso2esb 4.9.0

If I modify manually axis2_1.6.1.wso2v14.jar, wso2esb 4.9.0 crashes at startup with the following message: Could not start: null(reference:file:../plugins/axis2_1.6.1.wso2v14.jar:17). It's state is uninstalled. In my case, I want to apply the…
jonenst
  • 339
  • 2
  • 11
1
vote
1 answer

How can I change the check of Visual Studio if a project needs to be built

I' am creating a project template based on a .net core console app. It consists of typescript files which (when changed) need to trigger a recompilation of the project. This should be default on subsequent addition of certain ".ts" files. When…
1
vote
1 answer

Adding new Game Types without recompiling the program? (C++)

I have a game which has different game types, i.e Time Trial, Infinite Game etc. Each game type has different timing rules and potentially collision rules. Obviously in the Time Trial the game ends when the time runs out. I am currently adding game…
Noviz
  • 59
  • 1
  • 8
1
vote
1 answer

Changing Platform of Existing DLL

I have a 3rd DLL that is built for "Any CPU". It needs (for a specific reason) to be rebuilt for x86. I have no access to the existing source code, but could via Reflector, decompile and recompile it myself. Is there another way to do this without…
Ray Booysen
  • 28,894
  • 13
  • 84
  • 111
1
vote
1 answer

Scilab, backdoor error, octave conflict

I installed scilab.6.0.0 and backdoor fromscilab website (which I could not find it from Application>Module maneger>atom>Technical). I moved the backdoor file my home and from scilab command line I installed…
Z.Grey
  • 164
  • 2
  • 12
1
vote
0 answers

How to recompile opencv_traincascade (OpenCV 2.4)?

I would like to know How to compile ONLY the program opencv_traincascade on macOS Sierra. I have the source code of the traincascade (in the folder /opencv-2.4.13/apps/traincascade/). However, when I go to this folder and type on terminal: cmake…
1
vote
1 answer

Decompiling, modifying and Recompiling android apk

First I used http://www.javadecompilers.com/apk to decompile my apk and I found what I wanted to modify, but I couldn't find an easy way to recompile the apk after the modifications. So I used apktool to decompile my apk because it has a handy build…
1
vote
1 answer

what happens to view when published

When a site is published controllers are converted to dll, but what happen to views, for eg if new views are replaced by old, the site is not reset. Are the views compiled every time, someone calls it
Arun Prasad E S
  • 9,489
  • 8
  • 74
  • 87
1
vote
1 answer

How to recompile with -Xlint in java netbeans?

How do i recompile my java program with -Xlint as indicated by the java compiler. I am using netbeans 8.1 beta version. Note: E:\NetBeansProjects\Project21\MyCode\src\mycode\MyCode.java uses unchecked or unsafe operations. Note: Recompile with…
Mitesh
  • 145
  • 1
  • 13