English Amiga Board


Go Back   English Amiga Board > Coders > Coders. General > Coders. Releases

 
 
Thread Tools
Old 17 June 2020, 06:45   #41
tolkien
AmigaMan
 
tolkien's Avatar
 
Join Date: Oct 2012
Location: Castro Urdiales/Spain
Posts: 760
Could you uploud it to the zone Asman?
tolkien is offline  
Old 17 June 2020, 08:56   #42
Asman
68k
 
Asman's Avatar
 
Join Date: Sep 2005
Location: Somewhere
Posts: 828
@tolkien - No problem, In The Zone.
Asman is offline  
Old 17 June 2020, 09:32   #43
tolkien
AmigaMan
 
tolkien's Avatar
 
Join Date: Oct 2012
Location: Castro Urdiales/Spain
Posts: 760
Thanks so much mate!
tolkien is offline  
Old 26 August 2020, 12:27   #44
yellowsub
Registered User
 
Join Date: May 2020
Location: Amsterdam, Netherlands
Posts: 1
Hi

I can't see it in The Zone, perhaps it expired?

Any chance of a re-upload?

Or is there another link for a 64 bit version?

Thanks!
yellowsub is offline  
Old 26 August 2020, 20:39   #45
clenched
Registered User
 
Join Date: Sep 2008
Location: Gainesville U.S.A.
Posts: 771
Maybe this is it.
http://grandis.nu/eabsearch/search.p...xclude=&limit=
clenched is offline  
Old 26 August 2020, 23:27   #46
Asman
68k
 
Asman's Avatar
 
Join Date: Sep 2005
Location: Somewhere
Posts: 828
@yellowsub

In The Zone you can find version which I use. vbcc-2020.07.22.bin.7z. Enjoy.
Asman is offline  
Old 31 October 2020, 11:15   #47
kamelito
Zone Friend
 
kamelito's Avatar
 
Join Date: May 2006
Location: France
Posts: 1,801
while the path is working for the binaries, I have errors for the includes.
any ideas why.?

vbcc V0.9f (c) in 1995-2017 by Volker Barthelmann
vbcc code-generator for m68k/ColdFire V1.11 (c) in 1995-2017 by Volker Barthelmann
>#include <exec/types.h>
error 248 in line 17 of "gelbobs.c": file 'exec\types.h' not found

#include <exec/types.h>

I don't get it because the include path is on the path env variable.

Last edited by kamelito; 31 October 2020 at 11:34.
kamelito is offline  
Old 31 October 2020, 13:21   #48
phx
Natteravn
 
phx's Avatar
 
Join Date: Nov 2009
Location: Herford / Germany
Posts: 2,496
I never used vbcc under Windows myself, but according to the vc-frontend source you have to define a VCCFG environment variable under Windows, which points to vbcc's config directory. There it will find the default vc.cfg (and others).

And are you aware that vbcc doesn't come with AmigaOS headers? You have to install them yourself and add the path to vc.cfg.

Last edited by phx; 31 October 2020 at 13:23. Reason: Replaced "includes" with "come with" to avoid confusion. ;)
phx is offline  
Old 31 October 2020, 15:36   #49
kamelito
Zone Friend
 
kamelito's Avatar
 
Join Date: May 2006
Location: France
Posts: 1,801
Thanks I’ll try that. I know about the headers but they’re included with Leffman installer.
kamelito is offline  
Old 31 October 2020, 18:10   #50
kamelito
Zone Friend
 
kamelito's Avatar
 
Join Date: May 2006
Location: France
Posts: 1,801
it should work but doesn't the doc says :

vc needs a config file to know how to call all the translation phases (compiler, assembler,
linker). Unless a different file is specified using the +-option, it will look for a file vc.config
(vc.cfg for DOS/Windows).

On DOS/Windows it will search in the current directory.
If the config file was not found in the default search-paths and an environment variable
$VBCC is set, vc will also look in $VBCC/config.

as VBCC is set it should look for $VBCC/config and find the vc.cfg.

I can see in procmonitor that the folder is found while filtering through the vbccm68k process

Last edited by kamelito; 31 October 2020 at 18:52.
kamelito is offline  
Old 01 November 2020, 01:15   #51
phx
Natteravn
 
phx's Avatar
 
Join Date: Nov 2009
Location: Herford / Germany
Posts: 2,496
Quote:
Originally Posted by kamelito View Post
as VBCC is set it should look for $VBCC/config and find the vc.cfg.
You're right, fortunately. So VCCFG is just an additional option.

Quote:
Originally Posted by kamelito View Post
I don't get it because the include path is on the path env variable.
BTW, to which env variable are you refering here? Where did you define the AmigaOS SDK include path? It should be attached to the first two lines (-cc and -ccv) of vc.cfg.

Does including vclib headers, like <stdio.h> work?
phx is offline  
Old 01 November 2020, 14:45   #52
kamelito
Zone Friend
 
kamelito's Avatar
 
Join Date: May 2006
Location: France
Posts: 1,801
I was was using it wrongly, I was using vbccm68k instead of vc. Sorry about that. I was using it like I use vasm68k.
kamelito is offline  
Old 01 November 2020, 17:45   #53
phx
Natteravn
 
phx's Avatar
 
Join Date: Nov 2009
Location: Herford / Germany
Posts: 2,496
Ahh, ok!

You can do that, of course, but then you have to provide a lot of options and also do the assembling and linking manually.
phx is offline  
Old 18 June 2021, 16:04   #54
AF2013
Registered User
 
Join Date: Apr 2013
Location: .
Posts: 250
I have download the Install-VBCC and What Windows IDE Should I used? Visual Studio?
AF2013 is offline  
Old 18 June 2021, 17:19   #55
phx
Natteravn
 
phx's Avatar
 
Join Date: Nov 2009
Location: Herford / Germany
Posts: 2,496
Not sure how much Visual Studio allows configuration and usage of foreign compilers. I have never used vbcc under Windows myself, but maybe I would have a look at VSCode, which seems to be a great free editor (although I'm usually suspicious regarding all Microsoft products ).

Otherwise I would just use any editor you like (Notepad++ ?) and a shell (windows console) to compile. For more complex projects a "make" program is recommended.
phx is offline  
Old 18 June 2021, 19:45   #56
AF2013
Registered User
 
Join Date: Apr 2013
Location: .
Posts: 250
Thumbs up

Quote:
Originally Posted by phx View Post
Not sure how much Visual Studio allows configuration and usage of foreign compilers. I have never used vbcc under Windows myself, but maybe I would have a look at VSCode, which seems to be a great free editor (although I'm usually suspicious regarding all Microsoft products ).

Otherwise I would just use any editor you like (Notepad++ ?) and a shell (windows console) to compile. For more complex projects a "make" program is recommended.
Thanks for that. VSCode seem to be light weight software compare to Visual studio 2019.
AF2013 is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
My super simple cross development tool chain - build and run in 15 seconds xxxxx Coders. Asm / Hardware 37 23 July 2015 21:15
Unable to open your tool 'installer' kursad support.WinUAE 4 06 December 2009 19:38
The Installer Tool ...... out of package ? Another World project.WHDLoad 21 18 December 2008 11:28
VBCC 0.8j for Windows hitchhikr Coders. General 11 09 October 2008 00:58
unable to open your tool 'installer' sasai support.WinUAE 4 04 March 2007 02:58

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 09:37.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.13278 seconds with 16 queries