Tagged Questions

The act of compiling something again.

learn more… | top users | synonyms

11
votes
8answers
542 views

Is it safe to recompile an executable while it's running?

What happens if I recompile an executable while it's running? Does the operating system read all of the executable's contents into memory when it starts running it, so it will never read the new ...
8
votes
4answers
7k views

public static final variable in an imported java class

I happen to come across a Java code at my work place. Here's the scenario: There are 2 classes - ClassA and ClassB. ClassA has nothing except 4 public static final string values inside it. Its ...
7
votes
5answers
299 views

Fix bugs in .NET program without access to source

I have a program i frequently use that is made with .NET. This program has a small bug that is very annoying and the developer to the app is nowhere to be found. I have found the location of the ...
6
votes
2answers
3k views

compile with -fPIC option but the option it is already in the makefile

Hello I get this error whem I am trying to do the make: relocation R_X86_64_32 against `vtable for Torch::MemoryDataSet' can not be used when making a shared object; recompile with -fPIC It says ...
5
votes
5answers
83 views

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?
5
votes
4answers
164 views

Git workflow - changing branch and slow recompiles

I work on a large Scala project where we use Git for version control. My workflow is to work on new features in my own branch and switch when needed. Various releases of the code are in their own ...
5
votes
2answers
496 views

Recompile a x86 code with LLVM to some faster one x86

Is it possible to run LLVM compiler with input of x86 32bit code? There is a huge algorithm which I have no source code and I want to make it run faster on the same hardware. Can I translate it from ...
4
votes
2answers
160 views

How do I make Makefile to recompile only changed files?

I have been struggling a bit to get make to compile only the files that have been edited. However I didn't have much success and all the files get recompiled. Can someone explain me why? My files ...
4
votes
3answers
801 views

Trigger is invalid in Oracle

Some of the triggers in my database become invalid after certain changes on the tables. But it seems that they are still working. The only problem I have is if I use SQL Developer there are red ...
4
votes
6answers
265 views

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 ...
4
votes
3answers
3k views

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

(Related question: http://stackoverflow.com/questions/992930/java-compilers-or-jvm-languages-that-support-goto) I have decompiled a jar (Legally, for debugging purposes) and want to recompile it. ...
4
votes
6answers
6k views

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: ...
3
votes
1answer
66 views

Is it possible to translate an assembly language to LLVM IR, optimize it and then recompile it to a different architecture?

Is it possible to translate an assembly language to LLVM IR, optimize it and then recompile it to a different architecture? How would you handle "push"es and "pop"s on the stack in the IR? This is the ...
2
votes
3answers
82 views

'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. ...
2
votes
3answers
65 views

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 ...
2
votes
1answer
236 views

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 ...
2
votes
1answer
112 views

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 ...
2
votes
1answer
188 views

SQL Server: Effects of using 'WITH RECOMPILE' in proc definition?

My understanding of the 'WITH RECOMPILE' option with stored procedures is generally limited to using the clause with a single stored proc call as a trailing parameter: exec sp_mystoredproc ...
2
votes
1answer
418 views

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 ...
1
vote
2answers
36 views

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 ...
1
vote
1answer
31 views

Why does ANT javac task recompiles my .java again and again

The source and destination directory will be recursively scanned for Java source files to compile. Only Java files that have no corresponding .class file or where the class file is older than ...
1
vote
1answer
68 views

recompiling php for osx with IMAP support

Yesterday I spent quite some time trying to recompile PHP for OS X. I tried several guides I found on Google but they all seemed outdated. Is there anyone who knows how to recompile PHP on OS X? I ...
1
vote
5answers
119 views

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 <stdio.h> void showme(); int main() { showme(); } ...
1
vote
3answers
198 views

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 ...
1
vote
1answer
136 views

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 ...
1
vote
1answer
28 views

Learning - Extensibility: Dynamic loading, and any other no-recompile software updates

I'm planning on writing a program but I am stuck in a conundrum. I don't want to start writing something and then have to rewrite it all when I find out that my program is not extensible. The other ...
1
vote
1answer
71 views

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 ...
1
vote
2answers
1k views

How to compile the dll back after decompile C# dll?

I use reflector to decompile a asp.net dll, after that I find the bug and fixed it, now I want to compile it back to a dll, then I can deploy, but it seems that I can't how can I do this ?
1
vote
1answer
95 views

Modifying platform/frameworks/base package

I'm planning to modify some bits in the platform/frameworks/base project in Android Donut r2. The modifications are very small and goes into java packages android.graphics and android.text (the API ...
1
vote
3answers
1k views

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 ...
1
vote
2answers
349 views

C Runtime Library Version Compatibility: updates require rebuilds?

How do you construct a library (static lib or a dll/so) so that it isn't sensitive to future updates to the system's C runtime librarires? At the end of July, Microsoft updated a bunch of libraries, ...
1
vote
2answers
308 views

Recompile ASP.NET web project without giving it a virtual directory

In my line of work I'm often retrieving very specific versions of crusty ASP.NET web apps from their long-forgotten repositories, making minor changes and then recompiling. A major annoyance in this ...
0
votes
3answers
48 views

Google App Engine - recompile GWT module

I've created Google App Engine project in Java using Eclipse following the book Beginning Java Google App Engine Before I bought this book I had created projects with unchecked option 'Use Google Web ...
0
votes
0answers
29 views

Changing USB driver C file and recompiling the kernel of Ubuntu 11.04

I would like to make some changes to the usb driver source codes (C files) and then compile the kernel of Ubuntu as PowerUSB branch. I don't know how to compile the new kernel such that the changes to ...
0
votes
1answer
126 views

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 ...
0
votes
1answer
31 views

How to recompile source files?

How to recompile decompiled Android Application files? To be specific, I downloaded these files from here https://code.google.com/p/ubuntu-countdown-widget/ and made the necessary changes by replacing ...
0
votes
1answer
114 views

android gingerbread source

i followed this guide and i've downloaded and recompiled Android 2.3.6 for my crespo platform. The preamble During the deployment procedure i noticed only one error: at the end of source ...
0
votes
1answer
43 views

Add support for OpenSSL in PHP without recompiling

Is this possible? I'm on Mac OSX. I'm using a custom install already, with the Mac OSX default*ish* apache.
0
votes
2answers
60 views

Why would a makefile recompile a class every time?

Here's my makefile all: main.o fileparam.o g++ -g $(LIBPATH) $(LIBS) file_parameters.o main.o -o test main.o: main.cpp g++ -g -Wall $(INCPATH) main.cpp -c fileparam.o: ...
0
votes
1answer
100 views

How to do a PHP Recompile? Imagecreatetruecolor error

As this is a new question I assume it's fine to create a new fresh question? My previous question is here: imageantialias call to undefined function error with GD installed Markus helped me figure ...
0
votes
4answers
202 views

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 ...
0
votes
0answers
97 views

Reload/Compile Jsp pages after updating XML file on webserver

I am running a jsp page (with some jar files) on a Tomcat webserver. On the page I am updating a XML file on the server based on the users input. The XML file is successfully updated (as I can see the ...
0
votes
1answer
132 views

Modifying an existing module in linux kernel

I am using g_file_storage as driver on my embedded linux to pose it as mass storage for any usb host.I have done that well!! Now I need to do more .... is to capture eject event on usb device ...
0
votes
0answers
119 views

How does one recompile PCRE for xampp?

From PHP PCRE (regex) isn't doesn't support UTF-8? recompile pcre with --enable-utf8 and --enable-unicode-properties I've never recompiled anything in my life. I've got a vague feeling it ...
0
votes
1answer
35 views

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 ...
0
votes
1answer
624 views

“IF..ElseIf..Else” or “Where clause” to guide Stored Procedure results

I have the following two SQL statements First one: IF(@User_Id IS NULL) BEGIN SELECT * FROM [UserTable] END ELSE BEGIN SELECT * FROM ...
0
votes
2answers
45 views

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 ...
0
votes
1answer
149 views

Recompile and reinstalling php

I am running Fedora Core 10 with php 5.2.9 without ldap. Now i want to remove current php installation and recompile the latest version of php with ldap and install it. How to do this?
0
votes
5answers
438 views

can I easily recomplie PHP with all my current settings and enable SOAP with the new configuration?

I have PHP 5.1.6 running with a ton of mods and extensions enabled, is there a way to reconfigure the current settings as well as add SOAP to the mix?
-2
votes
2answers
331 views

dotnet dll decompile and change the code

I need to change the code of the .NET DLL. I am able to see the code by compilable the DLL with .NET reflector, but I am not able to change the code of the DLL. With .NET Reflector, I decompile the ...