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
8
votes
5 answers

do we need to recompile libraries with c++11?

This is a very uninformed question, but: I would like to start using C++11. Can I continue to use my large collection of libraries which were compiled with my old gcc 4.2.1 compiler or do I need to recompile them all with a new compiler? I would…
user487100
  • 918
  • 1
  • 11
  • 22
8
votes
2 answers

Homebrew recompile from edited source code

Is there a way to to recompile from an edited source code via homebrew? I did a change on the source user.hpp of Boost which I now want to recompile Boost with. I tried --build-from-source and --enable-bar but neither works, saying that it is…
Yasin
  • 609
  • 1
  • 10
  • 22
8
votes
4 answers

Recompile decompiled Java (JD / JAD) source that contains goto instructions

(Related question: Java compilers or JVM languages that support goto?) I have decompiled a jar (Legally, for debugging purposes) and want to recompile it. I've used both JAD and JD and both don't compile due to goto instructions E.g. goto…
Eran Medan
  • 44,555
  • 61
  • 184
  • 276
7
votes
6 answers

How can you force recompilation of jsps in JBoss 4.2?

I hit on this nasty behavior on JBoss 4.2 in QA, and I want to nip it in the bud before we go into production and find some other corner case. A jsp calles a method that had the following signature: public void methodName(String arg) This was…
Yishai
  • 90,445
  • 31
  • 189
  • 263
7
votes
2 answers

How to stop nginx on my Amazon EC2 instance

I am trying to recompile nginx in order to add the page speed module. Never done anything like this before so a little scared! I am the step after doing "make" where I want to stop nginx. The problem is it seems like it restarts itself because my…
neptunian
  • 410
  • 4
  • 17
7
votes
2 answers

Can I convert a 16-bit .exe program to a 64-bit .exe?

I realize that there will likely be no special converter programs or anything easy like that for such a task, but it imperative that I find some way to get a 16-bit program to run in 64-bit Windows. Due to the large amount of resources that must be…
Variadicism
  • 624
  • 1
  • 7
  • 17
6
votes
1 answer

Grails shell doesn't recompile changed files

I'm new to grails and came across an issue of grails shell not recompiling my classes even though displaying a message about it. Here is what I'm doing: I have a grails 2.0.0 app that has class with certain static methods I would like to test some…
Tomato
  • 772
  • 8
  • 17
6
votes
5 answers

GNU-Make does not recompile when a header file changed

GNU-Make does not recompile when hdr.h file changed. As below printed lines, it did not try to recompile even main.d file is generated. Can you guide me why it happend? hdr.h #ifndef __HDR_H__ #define LOOP_CNT 1000 #endif /* __HDR_H__ */ …
andwella
  • 83
  • 2
  • 6
6
votes
1 answer

Recompile the java files which is decompiled by JD-GUI from a jar

I have a MyFile.jar file. I use JD-GUI to decompile it and used its "Save All Sources" options to save the files to a .zip file. Now extracted the .zip file and edited a .java file. the folder structure after extracting .zip file is like this …
Pawan
  • 1,614
  • 3
  • 18
  • 32
5
votes
5 answers

How to make a fix in one of the shared libraries (.so) in the project on linux?

I want to make a quick fix to one of the project's .so libraries. Is it safe to just recompile the .so and replace the original? Or I have to rebuild and reinstall the whole project? Or it depends?
facha
  • 11,862
  • 14
  • 59
  • 82
5
votes
3 answers

how to extract string inside single quotes using python script

Have a set of string as follows text:u'MUC-EC-099_SC-Memory-01_TC-25' text:u'MUC-EC-099_SC-Memory-01_TC-26' text:u'MUC-EC-099_SC-Memory-01_TC-27' These data i have extracted from a Xls file and converted to string, now i have to Extract data which…
WEshruth
  • 769
  • 3
  • 16
  • 32
4
votes
3 answers

'make' does not recompile when source file has been edited

I'm writing a little implementation of Conway's Game of Life in C. The source code is split in three files: main.c and functions.c/functions.h, where I put my functions definitions and declarations. Now, to create a grid of cell, I have a matrix of…
Lubulos
  • 290
  • 2
  • 9
4
votes
1 answer

Prevent Xcode to rebuild project on any file changes

Xcode rebuilds my project and every subproject if any change was made in a dependent swift file. It works ugly and is very annoying. CPU is always busy, dialog window constantly appears and prevents to run a current project because this window…
adnako
  • 1,287
  • 2
  • 20
  • 30
4
votes
1 answer

When does an ASP.NET Website project recompile?

As Maurico and codeka first stated, don't use the default InProc sessions if you don't want your sessions to be affected by website recompiles and application recycles. A list of what causes whole website recompile: By default, when any change is…
John K
  • 28,441
  • 31
  • 139
  • 229
4
votes
5 answers

Adding implementation without recompiling in Java?

Hey everyone, I'm a college senior with my first real job opportunity (exciting). I'm at the stage now where they need to see a programming example, and they gave me the task of implementing a random number generator service in Java, with two…
Eric Jackson
  • 75
  • 1
  • 6
1
2
3
12 13