Questions tagged [auto-compile]
26 questions
5
votes
2 answers
Possible to turn off App_Code auto-compile?
Working with Visual Studio (I'm using 2008) I have started to notice that when you save a file in the /App_Code folder, the program will hang for a bit before returning control. After a bit of research, I have learned that there's an auto-compile…

Ender
- 14,995
- 8
- 36
- 51
5
votes
2 answers
How to configure Koala Sass auto compile on partials changes?
I'm using Koala for Win64 to compile sass (with lot of partials) to css with no problems, but Koala auto compile function is only runs when there are updates in root scss file, so I need to open Koala and press 'compile' button every time when I…

user3058355
- 51
- 1
- 3
4
votes
4 answers
emacs function after asynchonous command
I currently use emacs for making and editing LaTeX documents. When compiling, I use an external program to compile into pdf. Right now, with the following code in my .emacs file, emacs will start compiling the document into a pdf whenever I save…

Eldritch Cheese
- 1,177
- 11
- 21
3
votes
1 answer
How to auto re-run sbt project in scala
I have created an sbt project to learn simple crud operation using akka-http. First I added simple routes to check if it is working or not.
By running sbt run command, I found that it runs locally without any error.
But when I make some changes to…

md samual
- 305
- 3
- 15
3
votes
1 answer
Grails autocompile not in development environment
I am running Grails 2.1 in a environment called "local" because "development" is reserved for a staging system. But I want to have to auto compile like in dev mode, i.e. if I am changing a controller the changes are compiled at one without rerunning…

retokiefer
- 99
- 8
2
votes
2 answers
How to compile LESS to CSS with Sublime without npm and node.js?
Our team is starting to use LESS to write CSS. I am using atom.io and there is a plugin to auto-compile LESS to CSS on save. (Link to plugin) However, some team member prefer to use sublime. While there are also similar plugin for sublime, it…

cytsunny
- 4,838
- 15
- 62
- 129
2
votes
1 answer
Grails autocompile broken after upgrade from 2.1 to 2.2.4
I hope you might can help me.
I recently upgraded our grails project from version 2.1 to 2.2.4 and now the autocompile/reload is broken => Everytime a make changes in Controller/Services/Taglibs I have to restart the app to see them.
Console…

fsch
- 201
- 1
- 5
- 17
2
votes
0 answers
Why Eclipse is not auto compiling my classes on save in maven based web application?
I have a maven based web application. Usually when we save a class in eclipse it is compiled and saved at location in target folder like \my_project\src-java\target\classes\com\st\modulename\controller\HomeController.class.
But in this maven web…

ajm
- 12,863
- 58
- 163
- 234
2
votes
4 answers
Automatic compiling and running third party code
I'm currently writing an automatic source code validation tool. Basically students have to upload their C# source code files as a solution for different tasks. The server compiles these files within a framework and checks the program against…

raisyn
- 4,514
- 9
- 36
- 55
1
vote
0 answers
How to stop BLUEJ from character to character compiling
The newer updates of Java Compiling platform BLUEJ works on a character to character compilation which makes it slower to type efficiently because when you type syntax in a large Program it compiles the full program on the addition of every new…

Anmol K.
- 89
- 1
- 5
1
vote
3 answers
eclipse auto-compile only creates packages- not class files
I am not sure what happened. I have done the following to troubleshoot:
verify the buildpath has no errors
unchecked "abort build when buildpath error occurs"
set "incomplete buildpath" and "circular dependencies " to warning from error
verified…

mafalda
- 1,024
- 1
- 13
- 24
1
vote
0 answers
Problems with Eclipse auto-compile and auto-completion
I'm using Eclipse 4.7.2 with Scala IDE plugin 4.7.0. Most of my projects include Java and Scala code and are working fine.
I took over an existing project, also with Java and Scala code and noticed something strange - initially, the auto complete…

David Rabinowitz
- 29,904
- 14
- 93
- 125
1
vote
1 answer
Compile to apk from Linux Terminal
I want to compile my code to apk from Linux Terminal, I tried to run the gradlew which is in the app's file but stack at the 52% of the progress.
I have installed the gradle, (sudoku apt-get install gradle)
I have installed the sdk tools.
If I have…

Κωστής Λίγγος
- 21
- 1
- 3
1
vote
3 answers
Compiling into multiple .scss files with Atom Plugin sass-autocompile by armin-pfaeffle
I am note quite sure if this is even possible with this plugin, but my current problem is that I maintain a large SCSS project, which has three sides and I actually want three different CSS files to be compiled while saving.
I have three main…

Antoine Henrich
- 180
- 1
- 13
1
vote
1 answer
How to Stop a Running a Program Using Other Java Program
I have been implementing a program to compile and run other applications. I was wondering if there is a way to terminate a program when my application discovers that there is an issue e.g. infinite loop. I tried to using process.Destroy() but it…

user2597012
- 581
- 4
- 9
- 28