[PB6.20-beta2] User-PureLibrary filenames are written in lowercase
[PB6.20-beta2] User-PureLibrary filenames are written in lowercase
Is it intentional that the User-PureLibrary file is created with a lowercase name on Linux? On Windows, the filename is as specified with the “--output” parameter.

Why OpenSource should have a license :: PB-CodeArchiv-Rebirth :: Pleasant-Dark (syntax color scheme) :: RegEx-Engine (compiles RegExes to NFA/DFA)
Manjaro Xfce x64 (Main system) :: Windows 10 Home (VirtualBox) :: Newest PureBasic version
Re: [PB6.20-beta2] User-PureLibrary filenames are written in lowercase
Makes sense, because Linux file system is case sensitive
My Projects ThreadToGUI / OOP-BaseClass / EventDesigner V3
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
Re: [PB6.20-beta2] User-PureLibrary filenames are written in lowercase
Yes it's done like that for official libs to reduce errors
Re: [PB6.20-beta2] User-PureLibrary filenames are written in lowercase
Yes, almost all Linux distributions use the default setting for the file system, which is case-sensitive.
Yes, it makes sense.
I encountered this behavior when I created a PureLibrary:
Later, I wanted to delete the PureLibrary again:
I created a bug report to better track the bug.
Yes, it makes sense.
I encountered this behavior when I created a PureLibrary:
Code: Select all
$ pbcompilerc Test.pb --purelibrary --output TestLib
PureBasic 6.20 Beta 2 - C Backend (Linux - x64)
Loading external modules...
Starting compilation...
67 lines processed.
Creating threaded version of the PureLibrary...
Starting compilation...
67 lines processed.
PureLibrary successfully created: "/home/alexander/purebasic/purelibraries/userlibraries/TestLib"
Code: Select all
$ rm /home/alexander/purebasic/purelibraries/userlibraries/TestLib
rm: cannot remove '/home/alexander/purebasic/purelibraries/userlibraries/TestLib': No such file or directory
Code: Select all
$ ls /home/alexander/purebasic/purelibraries/userlibraries/
README testlib

Why OpenSource should have a license :: PB-CodeArchiv-Rebirth :: Pleasant-Dark (syntax color scheme) :: RegEx-Engine (compiles RegExes to NFA/DFA)
Manjaro Xfce x64 (Main system) :: Windows 10 Home (VirtualBox) :: Newest PureBasic version