Re: install on Xubuntu

new topic     » goto parent     » topic index » view thread      » older message » newer message
engayola said...

Matt, I tell my initial error was to change the file ".profile" instead of ". bashrc". But still problems with:

	marcelo@rovi:~/euphoria/demo/linux$ exu qsort.exu 
	qsort.exu:6 
	can't find dll.e in . 
	or in $/home/marcelo/euphoria/include 
	or in $/home/marcelo/euphoria/include 
	include dll.e 
        	     ^ 
My .bashrc say
  export PATH=$PATH:/home/marcelo/euphoria/bin  
  export EUDIR=$/home/marcelo/euphoria  
  export EUINC=$/home/marcelo/euphoria/include 
can help me again?

You need to remove the '$' from the definitions of EUDIR and EUINC:

.bashrc said...

  export PATH=$PATH:/home/marcelo/euphoria/bin  
  export EUDIR=/home/marcelo/euphoria  
  export EUINC=/home/marcelo/euphoria/include 

The '$' tells bash that the characters that follow the '$' is a variable, hence:

  export PATH=$PATH:/home/marcelo/euphoria/bin  
In euphoria, this would be equivalent to:

   PATH = append( PATH, "/home/marcelo/euphoria/bin" ) 

But when you're setting the directories, you don't want that extra '$'. For some reason, I added that in when replying to you before. It was a typo. Sorry about that. sad

Matt

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu