14

I just purchased the full version of Delphi XE Architect after using the trial version for 30 days. I can't build anything, every time I go to build a project I get the error.

[DCC Fatal Error] MegaMainPrj.dpr(1): F1027 Unit not found: 'System.pas' or binary equivalents (.dcu)

A quick google said that the library paths were a problem and I compared what was given (in a previous stackoverflow question) with what I had in the registry, and it was identical.

What could be causing this?

EDIT: Immediatly after I get this error message the entire IDE crashes.

skaffman
  • 398,947
  • 96
  • 818
  • 769
Daisetsu
  • 4,846
  • 11
  • 50
  • 70

7 Answers7

42

add this : $(BDSLIB)\win32\release;

to your library path .

user763539
  • 3,509
  • 6
  • 44
  • 103
14

Make sure you have the environmental variables set properly (Tools->Options->Environmental Variables from the IDE's main menu):

BDS=D:\Embarcadero\RAD Studio\8.0
BDSCOMMONDIR=C:\Users\Public\Documents\RAD Studio\8.0
PLATFORM=Win32

These should all be set in the System Variables section, and should have been added by the installer. (Obviously, they should point to the installation location of your XE installation - mine is installed in D:\Embarcadero\RAD Studio\8.0, as you can see.)

EDIT: I see in your comment you installed in C:\Program Files - bad idea if you're running Windows Vista or Win7 or higher. You should try installing in a different location. You can also try running the IDE as Administrator (right-click shortcut in Start->All Programs->Embarcadero->RAD Studio XE->Delphi XE, choose "Run as Administrator" from context menu). Does this change anything?

Also, you can open a free support case at Embarcadero for installation-related issues. I'd first try reinstalling in another location (running the install as Administrator, putting it in another folder, and installing for all users); if that doesn't work, open a support case. You can also post to the Embarcadero Delphi Installation forums - you'll need to have already created a user account there first to log in.

Ken White
  • 123,280
  • 14
  • 225
  • 444
  • 1
    BDS=c:\program files\embarcadero\rad studio\8.0; BDSCOMMONDIR=C:\Users\Public\Documents\RAD Studio\8.0; Platform=Win32; Looks like it's correct already. – Daisetsu Apr 14 '11 at 00:19
  • 1
    Running as Administrator didn't fix it. I'll uninstall, I was avoiding this because I have about a dozen third party components installed already. – Daisetsu Apr 14 '11 at 17:07
  • @Daisetsu: Export the registry settings prior to uninstalling. You can edit the text .reg file, deleting stuff not related to your third party packages (including entire sections if needed), adjust paths if needed, and import back to the registry after reinstalling and running the IDE at least once. (The first run completes registry setup, adding entries not placed by the installer.) If this is more work than just reinstalling the third party stuff, then go ahead and reinstall the 3rd party stuff - use whatever method is less work and that you're comfortable with doing. :) – Ken White Apr 14 '11 at 19:37
3
C:\Embarcadero\RAD Studio\9.0\lib\win32\release

and

C:\Embarcadero\RAD Studio\9.0\lib\win32\debug

Both of these path have been to add in Delphi XE2 from IDE <<Tools->Options->Library->Library path>>

It's OK?

xdazz
  • 158,678
  • 38
  • 247
  • 274
David-Star
  • 35
  • 3
3

Goto Tools->Options->Library->Library path

and add $(BDSLIB)\win32\release

This worked in Delphi 10.2

rollstuhlfahrer
  • 3,988
  • 9
  • 25
  • 38
1

When compiling using the command line compiler, so not from within the IDE, you can also get this error when the name of the build configuration is not "debug" and not "release".

It seems that, when using the command line compiler, it tries to find its dcus in a path under BDSLIB that it constructs using the configuration name. I had this happening when using a configuration named ReleaseHA. Note: it was not a sub configuration under "release", but an extra configuration besides "debug" and "release".

Reinier
  • 459
  • 2
  • 4
  • 13
1

Sometimes this error message occurs when we have duplicate libraries included.

Make sure that:

Tools->Options->Environmental Options->Library

and

Project->Options->Directories/Conditionals

Don't include the same paths...

cristian.d
  • 135
  • 1
  • 8
0

Running as Administrator worked for me.

Carl Clark
  • 291
  • 4
  • 13