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
2 answers

Manual recompile stored procedure SQL Server

How can I recompile manually a stored procedure in SQL Server? Is just like a drop and create? I know can do it with an option in the create statement (WITH RECOMPILE), and it will be recompiled every execution, and executing sp_recompile…
colau
  • 31
  • 3
1
vote
1 answer

iOS 8 today extension - recompile

I create an extension for my app in iOS 8 and it is displayed correctly under the Today tab. However when I make a change to the extension (either a UI change in the Storyboard, a UI change in viewDidLoad code, or some changes in the…
Enzo Tran
  • 5,750
  • 6
  • 31
  • 36
1
vote
2 answers

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 ?
MemoryLeak
  • 7,322
  • 23
  • 90
  • 133
1
vote
1 answer

Recompile .java file without access to the libraries?

So here's my situation: I have a .jar file with 2 .class files in it, both import from a library I do not have access to (the library is proprietary and somehow hidden, so no way of getting it). Now I'd like to change the implementation of these…
Wingblade
  • 9,585
  • 10
  • 35
  • 48
1
vote
1 answer

How bridge pattern help for decoupling the implmentation and avoid recompiling on client side

I have some confusion in the benefit of recompiling from the bridge pattern. For example, why making an abstract implementation interface will help with client code not recompiling when we change the implementation? I guess for the client that…
user2984297
  • 353
  • 1
  • 3
  • 14
1
vote
1 answer

Tomcat 8 - Virtual Host Not Recompiling JSPs or Recognizing Updated Classes

I've just unpacked and configured Tomcat 8.0.3 on Windows 7 with a virtual host. I've tested it successfully under the default webapps, however, my virtual host is not recognizing changes in JSP files or classes. Here is my set…
Palladium
  • 65
  • 7
1
vote
0 answers

SQL Server 2008 with recompile

My client wants with recompile in every stored procedure as a quick fix for parameter sniffing. I advised against this, but nonetheless they want to give it a shot. Now, the database exists of hundreds and hundreds stored procedures. My question:…
Michel van Engelen
  • 2,791
  • 2
  • 29
  • 45
1
vote
2 answers

unistd_32.h and syscall_table_32.h not found

I am building a system call on linux kernel 3.8.0. I added my code to pre>/usr/src/linux/kernel/sys.c But I cannot find any unistd_32.h to add #define __NR_helloworld and syscall_table_32.h to add . long sys_helloworldThere is a file called…
dvs
  • 511
  • 1
  • 10
  • 27
1
vote
1 answer

Silverlight - Avoid project recompile action to apply layout change

When I code mobile applications for Windows Phone (Silverlight Platform) and I make some changes to the UI, I have to recompile the whole solution in order to apply them. This is annoying and takes several seconds as well because Visual Studio…
fillobotto
  • 3,698
  • 5
  • 34
  • 58
1
vote
1 answer

Forcing NetBeans 7.3 to recompile project on test run?

When I click "Debug test file" in NetBeans on certain class, it is run against the binaries compiled from the last build. I'd like NetBeans to recompile, but I can't find how to achieve that. Also, it seems that sometimes the recompile happens -…
Ondra Žižka
  • 43,948
  • 41
  • 217
  • 277
1
vote
1 answer

C# updating information in an exe file

Im building an application that should consist of a single .exe file which in turn will be distributed by others. In this .exe file there is two hardcoded fields, username and password. The people who are going to distribute this do want the ability…
Gvs
  • 267
  • 1
  • 6
  • 16
1
vote
0 answers

Install compile version of php in Ubuntu

I have googled for a long time but still cannot figure out why the installation does not work. I have a machine installed with Ubuntu and php version 5.3.6-13ubuntu3.10 installed, as I want pthreads feature, I try to recompile the downloaded PHP…
user2361494
  • 141
  • 4
  • 9
1
vote
3 answers

play 2.1.1 framework does not recompile (refresh)

I am new to play framework. I have downloaded the latest version (2.1.1) I am trying to follow the steps from the video tutorial http://www.playframework.com/ but when I make any changes to the code, save it and then refresh localhost:9000 - it…
1
vote
2 answers

getting error "recompile with -fPIC"

After ./configure asterisk in centos I type make command but getting the following error /usr/bin/ld: /usr/local/lib/liblua.a(lapi.o): relocation R_X86_64_32 against `luaO_nilobject_' can not be used when making a shared object; recompile with…
Bilal
  • 179
  • 1
  • 4
  • 15
1
vote
2 answers

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, including the C runtime libraries. Our app is…
criddell
  • 14,289
  • 9
  • 41
  • 45