Delphi XE2 background IDE compiler unable to find source path

前端 未结 2 566
梦如初夏
梦如初夏 2021-01-17 17:06

I just bought XE2 version, installed the update 1 ISO, and made my Open Source projects compile with it.

In fact:

  • I added the source code paths of the
相关标签:
2条回答
  • 2021-01-17 17:45

    Might be related to what Barry Kelly mentions here:

    http://blog.barrkel.com/2011/10/delphi-xe2-compiler-performance.html

    0 讨论(0)
  • 2021-01-17 17:47

    I asked the question to Dr Bob (by whom I bought the XE2 license - since the 1 $ = 1 € equation sounded a bit unfair, I wanted at least to have a real Delphi expert for being my reseller).

    Here is his answer:

    You did not make a mistake. The problem is that the there are three compilers in XE2 (like in previous versions of Delphi): the real compiler (which works fine), the Code Insight compiler (which is faster), the Error Insight compiler (which must be even more faster), and the syntax highlighting parser (which is the fastest).

    XE2 introduced a number of features that made the normal compiler slower, and gave the Code Insight and Error Insight compilers a bit of trouble. First of all, we have the new targets: Win32, Win64 and OSX which cause the search paths to be different for each target (see $PLATFORM directive), as well as build configuration, although there is only one "Library path" for each PLATFORM (and not for the build configurations).

    The second complexing factor is the dotted unit names (scoped unit names) that were introduced. Windows is no longer Windows, but Winapi.Windows.

    My guess is that these two additional complexing factors cause problems for the Code Insight and Error Insight compilers. Note that the real compiler still works. But the Error Insight shows incorrect errors, and the Code Insight doesn't always work for these units.

    You could try to explicitly add them to the project again (in which case the full path will be used, like you mention in your question on stack overflow as well).

    So I'm afraid this is some regression...

    Edit at closing question:

    First point is that adding full paths:

      SynPdf in '..\SynPdf.pas',
    

    in the .dpr did let the files been found - but the background compiler is still lost, unable to find a class declaration in this body.

    Just another regression sample:

       var Thread: array[0..3] of integer; 
           Handle: array[0..high(Thread)] of integer;
    

    Is a perfectly safe syntax, compiles just fine, was interpreted by the previous Error Insight compiler without any problems (works since Delphi 5), but fails under XE2.

    I'm a bit disappointed about XE2 IDE. Compiler makes it work. But IDE is really disappointing. It is not usable, from my point of view. I'll continue using Delphi 7 as my main editor, and just use XE2 as cross-platform compiler and debugger.

    0 讨论(0)
提交回复
热议问题