Search found 1599 matches

by St_W
Jun 14, 2023 11:19
Forum: General
Topic: fbc creates "Illegal Instruction"
Replies: 6
Views: 1904

Re: fbc creates "Illegal Instruction"

The Pi Zero W doesn't support ARMv7 instruction set, only ARMv6. see https://en.wikipedia.org/wiki/Raspberry_Pi#Specifications or https://raspberrypi.stackexchange.com/a/139499 You can try to build using -arch armv6 , but you probably need a ARMv6 build of FB's runtime library as well. Alternatively...
by St_W
Jun 01, 2023 11:23
Forum: Community Discussion
Topic: FreeBASIC 1.10.1 Release Discussion
Replies: 154
Views: 28115

Re: FreeBASIC 1.10.0 Release Discussion

tbh, now the first time I ever noticed `./contrib/deb/bintar-to-bindeb.sh` I just checked and actually I'm using a slightly customized version of that script. Main difference being added args for specifying arch and distro as well as updated dependencies (removed the amd64 specific stuff and added ...
by St_W
May 30, 2023 10:56
Forum: Community Discussion
Topic: FreeBASIC 1.10.1 Release Discussion
Replies: 154
Views: 28115

Re: FreeBASIC 1.10.0 Release Discussion

I've set up deb packaging for my CI builds some years ago, but don't update them very often. It uses the bash scripts included in the FB repo. Just triggered a new build and it ran through, but did not test it whether it's still fine.

see https://freebasic.net/forum/viewtopic.php?p=254744
by St_W
May 02, 2023 13:38
Forum: Community Discussion
Topic: Where can I get a Recent-Git-Build of FreeBASIC?
Replies: 639
Views: 176103

Re: Where can I get a Recent-Git-Build of FreeBASIC?

A DOS build (which has been stuck) already finished successfully today and the latest builds should be uploaded tonight again. Just wondering ... Did you try a cross build? Or using your previous method? No, still the old method. The cross-build requires considerably more work (than I spent recentl...
by St_W
Apr 26, 2023 19:53
Forum: Community Discussion
Topic: Where can I get a Recent-Git-Build of FreeBASIC?
Replies: 639
Views: 176103

Re: Where can I get a Recent-Git-Build of FreeBASIC?

That was easier and faster than expected :-) I spent some time this evening and have a basic nginx+Jenkins setup running now. Far from perfect and still using an old Jenkins version that still supports Java 8, but at least the setup got way easier and hopefully also less error-prone. The Tomcat + AJ...
by St_W
Apr 26, 2023 11:01
Forum: Community Discussion
Topic: Where can I get a Recent-Git-Build of FreeBASIC?
Replies: 639
Views: 176103

Re: Where can I get a Recent-Git-Build of FreeBASIC?

Thanks for the notification. I still have the old setup running as I couldn't spend any time on the modernization effort. And it's again not responding to web requests any more. I'll try to replace the Tomcat+AJP with nginx first, cause that is independent from the Java upgrade and hopefully fixes t...
by St_W
Apr 07, 2023 8:26
Forum: Community Discussion
Topic: Where can I get a Recent-Git-Build of FreeBASIC?
Replies: 639
Views: 176103

Re: Where can I get a Recent-Git-Build of FreeBASIC?

Since there are stability issues and the CI setup is quite outdated meanwhile I started looking into updating it. The current blocker are the DOS builds. I tried to run them in a 32-bit Win10 with NTVDM, but fbc.exe didn't run and neither did DJGPP's make. Up to now I run them in 32-bit WinXP NTVDM,...
by St_W
Mar 30, 2023 6:19
Forum: Beginners
Topic: pre-built FB-Extended-lib package
Replies: 8
Views: 1761

Re: pre-built FB-Extended-lib package

The "skipping incompatible ..." message usually means that the library is for the wrong platform/architecture, so pls check x86/x64 and ensure it's a windows binary. Regarding the other error there could be multiple reasons. At least it seems to be in fbext lib code, not because of some 3r...
by St_W
Mar 26, 2023 10:03
Forum: Beginners
Topic: pre-built FB-Extended-lib package
Replies: 8
Views: 1761

Re: pre-built FB-Extended-lib package

In your case it complains about the (3rd party) library PCRE to be missing. You need to provide that on your own, it doesn't come with the compiler as it's a 3rd party component. I've compiled that C-library a while ago and you can download the binaries here: https://users.freebasic-portal.de/stw/fi...
by St_W
Mar 23, 2023 14:51
Forum: Projects
Topic: VisualFBEditor - IDE for FreeBasic
Replies: 891
Views: 130865

Re: VisualFBEditor - IDE for FreeBasic

fbc version 1.10.0 is located here: https://freebasic.net/forum/viewtopic.php?t=19095 Just a small disclaimer: version 1.10.0 is not officially released yet, so any such version you can get as-of now represents a preliminary, non-final development version which may and very likely will change until...
by St_W
Mar 14, 2023 16:23
Forum: Linux
Topic: ARMv6z Build error 0n 1.10.0
Replies: 9
Views: 3361

Re: ARMv6z Build error 0n 1.10.0

Hi, if you were wondering about the ARMv6 default in my "linux-armv6-rpi" builds from https://users.freebasic-portal.de/stw/builds/linux-armv6-rpi/ they indeed use a single-line patch for fb.bi as explained in the introduction post back then https://www.freebasic.net/forum/viewtopic.php?p=...
by St_W
Mar 14, 2023 15:21
Forum: Community Discussion
Topic: Where can I get a Recent-Git-Build of FreeBASIC?
Replies: 639
Views: 176103

Re: Where can I get a Recent-Git-Build of FreeBASIC?

Any problem building the latest version of fbc ? By cons, it works for the manual. Restarted everything, should work now again. As it already happened in the past the http-response-handling threads got stuck for some reason, which in turn made the publish job fail (trying to fetch the changelog) an...
by St_W
Feb 04, 2023 12:51
Forum: Community Discussion
Topic: Where can I get a Recent-Git-Build of FreeBASIC?
Replies: 639
Views: 176103

Re: Where can I get a Recent-Git-Build of FreeBASIC?

It has been quite a long time since my CI builds became unavailable due to construction work. By now most of the construction work is finished and basic network setup is done. So I can (finally) announce that my fbc and documentation builds are back :-) Latest fbc and documentation builds have been ...
by St_W
Jul 26, 2022 22:35
Forum: Windows
Topic: Configure libraries for database
Replies: 10
Views: 1860

Re: Configure libraries for database

Just remove the duplicate definition from the mysql_test.bas, it's already defined in crt/stddef.bi, included via mariadb.bi -> crt/ctype.bi -> crt/stddef.bi Typically one uses an ORM nowadays and doesn't write queries and fetching logic manually. FreeBasic, being similar to C and something like a s...
by St_W
Jul 26, 2022 21:03
Forum: Windows
Topic: Configure libraries for database
Replies: 10
Views: 1860

Re: Configure libraries for database

The MySQL headers that come with FreeBasic seem to be quite old and only seem to be compatible with 32-bit FreeBasic (as they're not included in the 64-bit package). Thus I tried to quickly translate the latest headers and tested them on 64-bit Windows 10 using FreeBasic 1.09 64-bit. I chose the Mar...