SyntaxHighlighting.dll for Linux (?)
SyntaxHighlighting.dll for Linux (?)
I use SyntaxHighlighting.dll in my tools. Is it possible to build this library for Linux?
Re: SyntaxHighlighting.dll for Linux (?)
The source is on Github PureBasicIDE/tools/HighlightingDll.pb.
You should be able to compile it for Linux.
You should be able to compile it for Linux.
Re: SyntaxHighlighting.dll for Linux (?)
Here is the topic where I tried to compile and it didn’t work
Re: SyntaxHighlighting.dll for Linux (?)
That crash comes from the array initialization.
Add these lines to InitSyntaxCheckArrays() of HighlightingEngine.pb.
This topic should be moved to bugs.
Add these lines to InitSyntaxCheckArrays() of HighlightingEngine.pb.
Code: Select all
Global Dim ValidCharacters.b(#MaxSizeHT)
Global Dim BasicKeywordsHT.l(#MaxSizeHT)
Global Dim BasicKeywords.s(#NbBasicKeywords)
Global Dim BasicKeywordsReal.s(#NbBasicKeywords)
Global Dim BasicKeywordsEndKeywords.s(#NbBasicKeywords)
Global Dim BasicKeywordsSpaces.s(#NbBasicKeywords)
Global Dim ASMKeywordsHT.l(#MaxSizeHT)
Re: SyntaxHighlighting.dll for Linux (?)
If I insert Xincludefile, then nothing happens. If I open the Syntaxhighlighting.so file, I get a file opening failure.
Re: SyntaxHighlighting.dll for Linux (?)
I did say you need to fix the InitSyntaxCheckArrays() to fix the Syntaxhighlighting.so crashing.
Why you coming up with Xincludefile?
Why you coming up with Xincludefile?