AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Sprachen und Entwicklungsumgebungen Sonstige Fragen zu Delphi Delphi bds2006 Indy10 dcc32 erstellt keine *.bpl
Thema durchsuchen
Ansicht
Themen-Optionen

bds2006 Indy10 dcc32 erstellt keine *.bpl

Ein Thema von cramer · begonnen am 8. Mai 2018 · letzter Beitrag vom 9. Mai 2018
Antwort Antwort
Benutzerbild von cramer
cramer

Registriert seit: 23. Jun 2004
Ort: Velbert (NRW)
96 Beiträge
 
Delphi 2006 Enterprise
 
#1

bds2006 Indy10 dcc32 erstellt keine *.bpl

  Alt 8. Mai 2018, 13:05
Hallo,
wenn ich die aktuelle Indy v.10.x compiliere, werden schon beim IndySystem100.dpk keine bpl und dcp generiert.
Code:
H:\BDS2006\Indy10\Lib\System>%D10%\Bin\dcc32.exe IndySystem100.dpk /Oobjs /DBCB /m /h /w /JPHNE /N..\..\D100 -$d-l-n+p+r-s-t-w- /LEH:\BDS2006\Indy10\Lib\System /LNH:\BDS2006\Indy10\Lib\System
Nur die dcu werden in D100 erstellt
Code:
H:\BDS2006\Indy10\D100
Ich habe auch schon auf dem ganzen System in C:\ und H:\ gesucht, ob die bpl woanders abgelegt werden, Fehlanzeige.
Die C:\Programme\Borland\BDS\4.0\bin\dcc32.cfg sieht so aus
Code:
-aWinTypes=Windows;WinProcs=Windows;DbiProcs=BDE;DbiTypes=BDE;DbiErrs=BDE
-u"C:\Programme\Borland\BDS\4.0\lib";"C:\Programme\Borland\BDS\4.0\lib\Obj"
Wo könnte man noch suchen?
Erfahrung ist etwas, daß man erst bekommt, kurz nachdem man es dringend gebraucht hätte.
  Mit Zitat antworten Zitat
Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
43.139 Beiträge
 
Delphi 12 Athens
 
#2

AW: bds2006 Indy10 dcc32 erstellt keine *.bpl

  Alt 8. Mai 2018, 13:16
Müsste es nicht eine Fehlermeldung geben, wenn die Ausgabedatei nicht erstellt wurde?

Ich würde ja da mal suchen, was dort erwähnt wird.
Aber prizipiell müsste die Datei in -LEH:\BDS2006\Indy10\Lib\System auftauchen.
Garbage Collector ... Delphianer erzeugen keinen Müll, also brauchen sie auch keinen Müllsucher.
my Delphi wish list : BugReports/FeatureRequests

Geändert von himitsu ( 8. Mai 2018 um 13:19 Uhr)
  Mit Zitat antworten Zitat
Benutzerbild von cramer
cramer

Registriert seit: 23. Jun 2004
Ort: Velbert (NRW)
96 Beiträge
 
Delphi 2006 Enterprise
 
#3

AW: bds2006 Indy10 dcc32 erstellt keine *.bpl

  Alt 8. Mai 2018, 14:16
Ja, der Fehler kommt aber nicht vom Compiler, auch der Errorlevel ist OK,
sondern erst später im Indy Batch wenn die Dateien kopiert werden sollen.
(file not found)

ECHO ****************
ECHO Compile System
ECHO ****************
CD System
%D10%\Bin\dcc32.exe IndySystem100.dpk /Oobjs /DBCB /m /h /w /JPHNE /N..\..\D100 -$d-l-n+p+r-s-t-w- /LEH:\BDS2006\Indy10\Lib\System /LNH:\BDS2006\Indy10\Lib\System
if errorlevel 1 goto enderror
copy *100.bpl ..\..\D100 >nul
copy *100.dcp ..\..\D100 >nul
copy *.hpp ..\..\D100 >nul
Erfahrung ist etwas, daß man erst bekommt, kurz nachdem man es dringend gebraucht hätte.
  Mit Zitat antworten Zitat
Benutzerbild von cramer
cramer

Registriert seit: 23. Jun 2004
Ort: Velbert (NRW)
96 Beiträge
 
Delphi 2006 Enterprise
 
#4

AW: bds2006 Indy10 dcc32 erstellt keine *.bpl

  Alt 8. Mai 2018, 14:21
Auch mit -LE gehts nicht
Code:
H:\BDS2006\Indy10\Lib\System>%D10%\Bin\dcc32.exe IndySystem100.dpk /Oobjs /DBCB /m /h /w /JPHNE /N..\..\D100 -$d-l-n+p+r-s-t-w- -LEH:\BDS2006\Indy10\Lib\System -LNH:\BDS2006\Indy10\Lib\System
Borland Delphi for Win32 compiler version 18.0
Copyright (c) 1983,2005 Borland Software Corporation
IndySystem100.dpk(46)
47 lines, 0.09 seconds, 329 bytes code, 0 bytes data.

H:\BDS2006\Indy10\Lib\System>dir *.bpl
 Datenträger in Laufwerk H: ist DIV1
 Volumeseriennummer: 28CA-B5A0

 Verzeichnis von H:\BDS2006\Indy10\Lib\System

Datei nicht gefunden
Erfahrung ist etwas, daß man erst bekommt, kurz nachdem man es dringend gebraucht hätte.
  Mit Zitat antworten Zitat
Benutzerbild von cramer
cramer

Registriert seit: 23. Jun 2004
Ort: Velbert (NRW)
96 Beiträge
 
Delphi 2006 Enterprise
 
#5

AW: bds2006 Indy10 dcc32 erstellt keine *.bpl

  Alt 8. Mai 2018, 14:43
Wenn man die Pfad Optionen /LH vor die -$ Optionen setzt, klappts :
Code:
%NDD10%\Bin\dcc32.exe IndySystem100.dpk /Oobjs /DBCB /m /h /w /B /N..\..\D100 /LEH:\BDS2006\Indy10\Lib\System /LNH:\BDS2006\Indy10\Lib\System -$d-l-n+p+r-s-t-w-
Erfahrung ist etwas, daß man erst bekommt, kurz nachdem man es dringend gebraucht hätte.
  Mit Zitat antworten Zitat
Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
43.139 Beiträge
 
Delphi 12 Athens
 
#6

AW: bds2006 Indy10 dcc32 erstellt keine *.bpl

  Alt 8. Mai 2018, 18:44
Process Monitor von SysInternals https://docs.microsoft.com/en-us/sys...disk-utilities

Damit siehst du wo was geschrieben/gelesen wird, also wo deine Datei hin geht, bzw. warum sie nicht geht, denn auch Zuriffsfehler werden angezeigt.
Falls sowas mal wieder passiert und du nichts findest.
Garbage Collector ... Delphianer erzeugen keinen Müll, also brauchen sie auch keinen Müllsucher.
my Delphi wish list : BugReports/FeatureRequests
  Mit Zitat antworten Zitat
Benutzerbild von cramer
cramer

Registriert seit: 23. Jun 2004
Ort: Velbert (NRW)
96 Beiträge
 
Delphi 2006 Enterprise
 
#7

AW: bds2006 Indy10 dcc32 erstellt keine *.bpl

  Alt 9. Mai 2018, 12:03
Es gab immer noch Probleme mit dem dcc32, unter anderem hier
Code:
procedure TIdIOHandler.Write(AValue: Int64; AConvert: Boolean = True);
{$IFDEF AVOID_URW_ERRORS}
var
  h: Int64;
{$ELSE}
  {$IFDEF HAS_TIdUInt64_QuadPart}
var
  h: TIdUInt64;
  {$ENDIF}
{$ENDIF}
begin
  if AConvert then begin
    {$IFDEF AVOID_URW_ERRORS}
    // assigning to a local variable to avoid an "Internal error URW533" compiler
    // error in Delphi 5, and an "Internal error URW699" compiler error in Delphi
    // 6. Later versions seem OK without it...
    h := GStack.HostToNetwork(UInt64(AValue));
    AValue := h;
    {$ELSE}
      {$IFDEF HAS_TIdUInt64_QuadPart}
    // assigning to a local variable if UInt64 is not a native type, or if using
    // a C++Builder version that has problems with UInt64 parameters...
// ----------------------------------------------------------------
    h.QuadPart := UInt64(AValue);     <--- Error in Line 1128
// ----------------------------------------------------------------
    h := GStack.HostToNetwork(h);
    AValue := Int64(h.QuadPart);
      {$ELSE}
    AValue := Int64(GStack.HostToNetwork(UInt64(AValue)));
      {$ENDIF}
    {$ENDIF}
  end;
  Write(ToBytes(AValue));
end;
Nachdem ich dann in der fulld_2006.bat an allen Stellen den Schalter /JPHNE entfernt hatte, lief es durch.
Erfahrung ist etwas, daß man erst bekommt, kurz nachdem man es dringend gebraucht hätte.
  Mit Zitat antworten Zitat
Antwort Antwort

 

Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 17:40 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz