FileSystem Error: Can't Get Anything to Compile

Archives Forums/Linux Discussion/FileSystem Error: Can't Get Anything to Compile

SebHoll(Posted 2006) [#1]
Hi,

I've recently installed Ubuntu 6.06, downloaded all packages as described in the HowTo's and extracted, updated and sync'd BlitzMax.

However, whenever I try to compile any program in BlitzMax, I get the following error message:



As an example of the source code I am using, have a look below:

SuperStrict
Global wndMain1:TGadget = CreateWindow("Hello - I'm Window ",10,10,400,300,Null,15)

Repeat

	Select WaitEvent()

	Case EVENT_WINDOWCLOSE;End

	EndSelect

Forever


End


I know next to nothing about Linux so I was wondering whether someone can help me get it working...


Thanks


Seb


skidracer(Posted 2006) [#2]
Eeek. Try commenting out lines 175 and 218 of brl.mod/filesystem.mod/filesystem.bmx and then build modules before rebuilding your app.


SebHoll(Posted 2006) [#3]
Thanks skid. I've commented out 175 and 218, hit Rebuild All and while the modules are recompiling, it halts at:



Cheers

Seb


SebHoll(Posted 2006) [#4]
Finally managed to get the modules to recompile after having to reinstall mesa-gl-dev and other packages. After rebuilding application, all is working well.

Thanks Skid for the fix and the prompt reply.