1
QB64 Discussion / Re: Cross-compiling with QB64? (Writing Windows code on Linux)
« on: August 27, 2020, 01:53:29 pm »@mackan
my question is about the file system to use... Windows 10 uses NTFS, Linux uses FAT32 . I have no idea of how a file written in a file system can be copied into another file system, so my question is : "must you have the same file system on the compiling machine and on the executing machine? Or is the copy of the compiled file a problem managed by the OS?
[/quote]
Standard for Linux is EXT4, I think, but no - it should not make a difference. What wine does is setting up a virtual environment, of sorts, and it can't really see beyond some fixed mount points. All the files (including the source) is kept in the same directory and the IDE sees the source code etc. There is no reason for the compiler / linker to be anything other than filesystem agnostic, right?