History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-17299
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Stopbuild Stopbuild
Assignee: Kirill Kalishev
Reporter: Peter Gromov
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

It's possible to run several "Make"s at once. It causes compile caches to be corrupted and rebuild

Created: 29 May 07 17:17   Updated: 05 Jun 07 10:19
Component/s: Compiling Project
Fix Version/s: Selena Final

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Fixed in build: 6,999


 All   Comments   Work Log   Change History      Sort Order:
Eugene Zhuravlev - 29 May 07 18:19
To reproduce:
1. make sure compiler is configured to run in background
2. create a run configuration that launches make before run
3. start lengthy compilation
4. while the compilation is in progress launch the run configuration.
The effect is that second "make" tab is added immediately causing the previious make to close (there will be a question whether you would like to close the first tab).

Eugene Zhuravlev - 29 May 07 18:26
I think I found the problem: check out the CompileDriver.startup() method: and the synchronized block inside it: the CompierTask.start() must not be asynchronous (see the invokeLater inside it).