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

Change of share permissions caused ASP.NET recompile

We have our sites under a main folder we'll call call "d:\sites". "d:\sites" is shared as \server1\sites with read only access for our Dev and QA groups. I added another read only group to the share permissions (not NTFS) and the site started to…
hubdows
  • 25
  • 3
1
vote
2 answers

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 process is having to create a virtual directory…
Coxy
  • 8,844
  • 4
  • 39
  • 62
0
votes
2 answers

Nginx module not added after recompile

I just recompiled nginx in order to add the HttpStripModule module. (i followed this: https://serverfault.com/a/279536/111652) this is the configure options i used to make / make install: --conf-path=/etc/nginx/nginx.conf…
Kristian
  • 21,204
  • 19
  • 101
  • 176
0
votes
3 answers

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 Toolkit' but for this project I checked it…
ruhungry
  • 4,506
  • 20
  • 54
  • 98
0
votes
1 answer

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 the images, target date, etc. How to recompile…
Netizen110
  • 1,644
  • 4
  • 18
  • 21
0
votes
1 answer

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.
Calvin Froedge
  • 16,135
  • 16
  • 55
  • 61
0
votes
1 answer

Recompiling using JAVAC command

this is the folderI am battling to convert classes2-dex2jar.jar.src.java. So I deleted ONE DRIVE which was recommended. JDK-8u321 and JRE-8u321 are properly installed. But whenever I say : javac classes2-dex2jar.jar.src.java it's saying javac: not a…
0
votes
0 answers

Makefile doesn't compile all files when I change it

I wrote makefile which seems to works fine except for one case: When I change the makefile itself it does not recompile all files. I've done all those steps: make clean make all make all (it returns "Nothing to be done for all") - ok change…
adixmasz
  • 1
  • 1
0
votes
1 answer

tried to recompile oldest java software

I am not an experienced programmer and I know very little java. I have a small 10 year old java software compiled with java1.5. Obviously I don't have the source code. This software has a small bug, so I used a java decompiler and found the bug. The…
0
votes
2 answers

Recompile binary program written in "new" language

So I have the following challenge: I receive binary file. When opened in notepad++, first line says: This program is developed with specific programming language. Opcodes: 0x3F byte - gotox byte, 0x40 byte - gotoy byte, 0x2400 - print ' ', 0x2401 -…
Gal Birka
  • 581
  • 6
  • 16
0
votes
0 answers

Why modifying an unrelated module in Android.mk rebuilds all libraries?

I made a simple project in Android Studio. It compiles with no errors, the editor throws no warnings and the app works fine. BUT if I modify the Android.mk in my project and hit the build button it recompiles everything from scratch. Since it's a…
0
votes
0 answers

Specifically, how would you compile a folder of decompiled actionscript back into a runable .swf

I know there is some information on compiling actionscript out there but i am finding it really hard to understand and I can't seem to get anything to work. I have recently taken interest in a spirograph maker flash game and wanted to see see how it…
dajaco81
  • 61
  • 1
  • 5
0
votes
1 answer

Recompile a decompiled class from a plugin

I am building a server in MC and I managed to change the plugin the way I wanted and now I want to compile that changed .java file to get the .class file and run the plugin on my server. However, I can't figure out how to recompile that specific…
Lukyan
  • 91
  • 5
0
votes
2 answers

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: file_parameters.cpp file_parameters.h g++ -g -Wall…
mrswmmr
  • 2,081
  • 5
  • 21
  • 23
0
votes
2 answers

How to run UTL_RECOMP.RECOMP_PARALLEL from a procedure?

I have a simple question: Is it possible to run UTL_RECOMP.RECOMP_PARALLEL from a procedure? I have a Package with a procedure which should recompile all invalid objects. It looks like this: PROCEDURE Compile () IS BEGIN EXECUTE…
digestBen
  • 77
  • 1
  • 11