Search found 5 matches

by FS-1281
Mon Jul 22, 2024 8:32 am
Forum: Coding Questions
Topic: [PB 6.11 LTS] Linker error / undefined symbol
Replies: 5
Views: 1019

Re: [PB 6.11 LTS] Linker error / undefined symbol

I have been able to identify the problem.

It is caused by the ImportC function. sprintf

changed

...

ImportC ""
....
sprintf(*Dest , Format$, value1 = #Null, value2 = #Null, value3 = #Null, value4 = #Null, value5 = #Null, value6 = #Null) As "_sprintf"
EndImport

....


to ...
by FS-1281
Mon Jul 22, 2024 7:05 am
Forum: Coding Questions
Topic: [PB 6.11 LTS] Linker error / undefined symbol
Replies: 5
Views: 1019

Re: [PB 6.11 LTS] Linker error / undefined symbol

I don't actually use UserLibs.
I have already completely reinstalled Purebasic without success.


I only use a few C functions


ImportC ""
fopen(fname.p-ascii,fmode.p-ascii)
fclose(c_stream.l)
fread(*buf,size.l,count.l,c_stream.l)
fwrite(*buf,size.l,count.l,c_stream.l)
; fflush(c_stream.l ...
by FS-1281
Mon Jul 22, 2024 7:00 am
Forum: Announcement
Topic: PureBasic 6.11 LTS is out !
Replies: 70
Views: 40057

Re: PureBasic 6.11 LTS is out !

I do not use a third-party library.
The source code includes over 273694 line of code, will be difficult to reduce it, may try.

I have opened a new topic under Bugs - Windows
by FS-1281
Mon Jul 22, 2024 6:42 am
Forum: Coding Questions
Topic: [PB 6.11 LTS] Linker error / undefined symbol
Replies: 5
Views: 1019

[PB 6.11 LTS] Linker error / undefined symbol

With the new version (change from 6.03 LTS to 6.11 LTS) I get an error dialog when compiling the exe
("Compile/Run" without the Option "Enable Debugger")

Strangely enough, the application runs with “Compile/Run” in debugging mode (Enable Debugger) without an error message


PureBasic - Linker ...
by FS-1281
Mon Jul 22, 2024 6:16 am
Forum: Announcement
Topic: PureBasic 6.11 LTS is out !
Replies: 70
Views: 40057

Re: PureBasic 6.11 LTS is out !

With the new version (change from 6.03 LTS to 6.11 LTS) I get an error dialog when compiling the exe
("Compile/Run" without the Option "Enable Debugger")

Strangely enough, the application runs with “Compile/Run” in debugging mode (Enable Debugger) without an error message


PureBasic - Linker ...