Search found 10 matches

by phx
Sat Oct 14, 2017 7:58 pm
Forum: SDK Support
Topic: Were there any BFD hacks for OS4?
Replies: 2
Views: 9444

Were there any BFD hacks for OS4?

I'm asking, because the DWARF sections in vbcc-compiled executables never worked correctly with OS4's gdb. And even addr2line, although working, emits dozens of suspiscious error messages:

BFD: Dwarf Error: mangled line number section (bad file number).

In the past we frequently reassured ...
by phx
Wed May 17, 2017 9:47 am
Forum: SDK Support
Topic: Bsdsocket.library
Replies: 2
Views: 8836

Re: Bsdsocket.library

Ahh, there it is! Thanks.
by phx
Tue May 16, 2017 11:38 pm
Forum: SDK Support
Topic: Bsdsocket.library
Replies: 2
Views: 8836

Bsdsocket.library

Where has proto/bsdsocket.h gone?
I have sources which I definetely compiled in the past, but which fail now with SDK 53.20 and later. Was it removed? At least bsdsocket.xml in interfaces still exists.
by phx
Sun May 07, 2017 3:28 pm
Forum: SDK Support
Topic: Bug in newlib/include/ctype.h with vbcc
Replies: 1
Views: 7589

Bug in newlib/include/ctype.h with vbcc

There is a longstanding bug in Newlib's ctype.h when used with vbcc:
The asm_toupper and asm_tolower macros use __ctype_ptr as the address of the ctype-array, although it is a pointer. You have to replace
addi 11,11,__ctype_ptr@l
by
lwz 11,__ctype_ptr@l(11)

Please, anybody fix that for the next ...
by phx
Sat Apr 23, 2016 7:07 pm
Forum: SDK Support
Topic: Who is responsible for Newlib/vbcc ?
Replies: 20
Views: 44843

Who is responsible for Newlib/vbcc ?

I'm receiving bug reports that some dynamically linked Newlib programs, compiled with vbcc, write the following messages into the serial debug log:

[elf] .sdata 0x7fd55440-0x7fd55440
Projektit:Ohjelmointi/ScoreGen/ScoreGen/ScoreGen (sh_flags 0x02)
has read-only flag in section header
but is ...
by phx
Fri May 30, 2014 12:37 pm
Forum: SDK Support
Topic: Bug in Local/newlib/include/ctype.h
Replies: 1
Views: 6321

Bug in Local/newlib/include/ctype.h

I just wondered why toupper/tolower() are not working when compiling with vbcc and linking with newlib.
Then I found the problem: somebody copied the toupper/tolower assembler inlines from the vclib ctype.h, but didn't notice that __ctype_ptr is a pointer to the ctypes-array and not the address of ...
by phx
Mon Oct 14, 2013 11:20 am
Forum: SDK Support
Topic: SDK 53.24 ... and followups
Replies: 43
Views: 80825

Re: SDK 53.24 ... and followups

A simple download link to the SDK would be nice, so developers also have the possibility to load the archive onto a GUI-less server, using wget or lynx.

With Lynx I'm getting "Unsupported URL scheme". *sigh* :roll:


Download SDK_53.24.lha

Click the link below to download the file. Do not ...
by phx
Wed Oct 19, 2011 1:11 pm
Forum: General AmigaOS
Topic: WarpOS emulation bugs
Replies: 4
Views: 6673

Re: WarpOS emulation bugs

Ok, good to know. I wasn't sure about the official status.
by phx
Wed Oct 19, 2011 9:08 am
Forum: General AmigaOS
Topic: WarpOS emulation bugs
Replies: 4
Views: 6673

Re: WarpOS emulation bugs

I just read that the team is working on update 4.
Were these WarpOS emulation bugs already considered? They are certainly easy to fix.
by phx
Tue Jul 19, 2011 11:28 am
Forum: General AmigaOS
Topic: WarpOS emulation bugs
Replies: 4
Views: 6673

WarpOS emulation bugs

I'm not sure about the status and the future of the WarpOS emulation in OS4, but maybe you want to check this:

I was sent a small 68k example program, which calls a PPC function via powerpc.library RunPPC(). It works fine with the original kernel, while it is causing a Grim Reaper under OS4.1 ...