Posts: 199
Threads: 15
Joined: Apr 2022
Reputation:
4
i found a bug in qb64. if you have in the same location a *.bas file and a directory with the same name. the compilation will fail. example :
file test.bas and directory test
Posts: 303
Threads: 10
Joined: Apr 2022
Reputation:
44
Hi! Can you clarify the directory layout, and whether you were building the executable to the QB64 directory or your source file's directory? If you're saying the directory `./test` and the file `./test.bas` are in the same directory, then I would expect that to cause problems because on Linux the executable name has no extension, meaning the executable name will be `./test`, the same as the existing directory. If that's the issue then I don't think that's really a bug, you have to compile the executable to a location without a conflicting directory name.