Questions tagged [incremental-compiler]

Use incremental-compiler for questions related to compilers which scan source code for changes, recompile only changed source code, then patch the resulting executable code.

References

26 questions
1
vote
1 answer

When does IntelliJ's Scala incremental compilation happen?

When does IntelliJ's Scala incremental compilation happen? I notice that making changes to a file does not cause the corresponding .class files (in /target) to be updated. When does this happen?
Josh Stone
  • 4,328
  • 7
  • 29
  • 37
1
vote
0 answers

broken SBT compilation - bug or feature?

I face the following problem when using SBT. If I add this line to build.sbt: unmanagedResourceDirectories in Compile <+= baseDirectory( _ / "src/main/scala" ) Incremental compilation breaks in a very tricky and not-nice way. A full example on how…
VasiliNovikov
  • 9,681
  • 4
  • 44
  • 62
1
vote
1 answer

GWT "No source code is available for type" when incrementalCompileWarnings flag set to true

Our project compiles fine when flag incrementalCompileWarnings isn't set to true (for maven-gwt-plugin). When it's set, there appear several errors like this: Tracing compile failure path for type…
EvilTosha
  • 157
  • 11
1
vote
1 answer

SBT plugin: How to list files output by incremental recompilation

I am writing a plugin for SBT that requires a list of the class files generated by the last run of the Scala compiler. This list of class files is then passed into a program that performs some bytecode transformations. Since this transformation…
Andrew Bate
  • 406
  • 3
  • 17
0
votes
1 answer

llvm: strategies to build JIT content incrementally

I want my language backend to build functions and types incrementally but don't pollute the main module and context when functions and types fail to build successfully (due to problems with the user input). I ask an earlier question regarding…
lurscher
  • 25,930
  • 29
  • 122
  • 185
0
votes
0 answers

Rust incremental compiler : Undefined symbols for architecture x86_64

I was trying out Rust for the first time and was playing around with unsigned literals. When I run the following program fn main() { println!("{x}", x = 1 - 2); } all is well and good, you get the expected output of -1. When I changed the…
0
votes
1 answer

How to properly deal with class dependencies to utilize incremental compilation in Java/Android with Gradle?

I improved our build system and activated incremental builds and compilation as described in this question. To my disappointment, incremental compilation didn't improve build times as much as I expected from reading Gradles blog post. After some…
A1m
  • 2,897
  • 2
  • 24
  • 39
0
votes
1 answer

SBT-web incremental compilation with file dependencies

I'm trying to write an set-web plugin which compiles sass files. I'm adhering to the convention that files with names starting with an "_" are not compiled directly, but they can be included in other files. I attempted to do this by using the…
irundaia
  • 1,720
  • 17
  • 25
0
votes
0 answers

C++ Compilation Error: ":-1: error: error: /INCREMENTAL:NO: No such file or directory"

When I tried to compile my project using QT creator, it gave me the error message: ":-1: error: error: /INCREMENTAL:NO: No such file or directory" I'm fairly new to C++, so I don't know much about it other than what I have found on Google. I've…
user3542347
  • 39
  • 1
  • 6
-1
votes
1 answer

Include executable php script of 1 million links

I am a front end developer (html, css, Wordpress) who is starting to dabble in .js and .php. I want to create a page similar to the www.milliondollarhomepage.com I want every one of those million pixels to point at a series of links: Html
Archie Butler
  • 455
  • 6
  • 20
-3
votes
2 answers

Siebel Incremental Compile - Automation Feasibility with Jenkins

I am currently working on to Automate Siebel compile through jenkins, As we all know for full compilation there is a command, however i am unable to do the same for Incremental compilation, most of the result says incremental compilation cannot be…
1
2