Pbuild differences 1.9 and 2.0

Xbase++ 2.0 Build 554 or later
Post Reply
Message
Author
bwolfsohn
Posts: 648
Joined: Thu Jan 28, 2010 7:07 am
Location: Alachua, Florida USA
Contact:

Pbuild differences 1.9 and 2.0

#1 Post by bwolfsohn »

When i've compiled under 1.9, i always got feedback on ambiguous variables i.e.

Xbase++ (R) Compiler 1.90.355 Apr 9 2009

Copyright (c) Alaska Software. All rights reserved.
File C:\cus20\auc\BUYERC~1.prg successfully compiled.
C:\cus20\auc\BUYERC~1.prg(176:0): warning XBT0103: Ambiguous variable reference, assuming MEMVAR aWidths
C:\cus20\auc\BUYERC~1.prg(184:0): warning XBT0102: Ambiguous variable reference oItems
C:\cus20\auc\BUYERC~1.prg(187:0): warning XBT0102: Ambiguous variable reference oItems

1.9 switches:
COMPILE = xpp
COMPILE_FLAGS = /q /n /w /m /b /dXBASE19 /dll:DYNAMIC
DEBUG = yes
GUI = yes
LINKER = alink
LINK_FLAGS =
RC_COMPILE = arc
RC_FLAGS = -v
OBJ_DIR = .\obj
OBJ_FORMAT = COFF
LINK_FLAGS = /FORCE:UNRESOLVED

i can't get 2.0 to display the same error messages.. i'm using:

COMPILE = xpp
COMPILE_FLAGS = /v /dXBASE20
DEBUG = yes
GUI = yes
LINKER = alink
LINK_FLAGS =
RC_COMPILE = arc
RC_FLAGS = -v
OBJ_DIR = .\obj20
OBJ_FORMAT = COFF
LINK_FLAGS = /FORCE:UNRESOLVED
AUC20.XPJ

all i get is:

xpp /v /dXBASE20 /COFF /b /dDEBUG /oc:\cus20\auc\obj20 @c:\temp\09138355.tmp
File: c:\cus20\auc\buyercheckout.prg Lines: 443
File c:\cus20\auc\buyercheckout.prg successfully compiled.

alink @c:\temp\09138375.tmp
Alaska 32-Bit Linker Version 2.00.623
Copyright (c) Alaska Software 1997-2015. All rights reserved.
Brian Wolfsohn
Retired and traveling around the country to music festivals in my RV.
OOPS.. Corona Virus, so NOT traveling right now...
http://www.breadmanrises.com
FB travel group: The Breadman Rises

User avatar
rdonnay
Site Admin
Posts: 4729
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Pbuild differences 1.9 and 2.0

#2 Post by rdonnay »

I don't have that problem.

Look below:

Code: Select all

Xbase++ (R) ProjectBuilder Version 2.00.623
Copyright (c) Alaska Software 1997-2015. All rights reserved.
xpp /q /n /w /m /b /ga /dEXPRESS18 /dll:DYNAMIC /COFF /oC:\expd20\obj20 @c:
Xbase++ (R) Compiler 2.00.623 Aug 17 2015
Copyright (c) Alaska Software. All rights reserved.
C:\expd20\Source\Dclipx\_DCGETBX.PRG(321:0): warning XBT0103: Ambiguous var a
C:\expd20\Source\Dclipx\_DCGETBX.PRG(321:0): warning XBT0102: Ambiguous var b
File C:\expd20\Source\Dclipx\_DCGETBX.PRG successfully compiled.
I'm using dclipx_20.xpj.
The eXpress train is coming - and it has more cars.

bwolfsohn
Posts: 648
Joined: Thu Jan 28, 2010 7:07 am
Location: Alachua, Florida USA
Contact:

Re: Pbuild differences 1.9 and 2.0

#3 Post by bwolfsohn »

that did the trick... thanks...

some of these don't show as valid options when you pbuild /?

that's what threw me off..
(that's my story and i'm stickin' too it..)
Brian Wolfsohn
Retired and traveling around the country to music festivals in my RV.
OOPS.. Corona Virus, so NOT traveling right now...
http://www.breadmanrises.com
FB travel group: The Breadman Rises

Post Reply