Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Need info about executing: (3 Items)
   
Need info about executing  
Hi,

I have created a project and built in Moemntics IDE.Now i have copied the binaries of the project by FTP into QNX 
neutrino running on VMWare.
When i try to run that binary by moving to the copied directory i cannot execute.I am running by command ./ filename.
(cannot execute -Is a directory is the message being displayed)
I dont want to run the exe which is downloaded while building in IDE.
My final purpose is to run this project on CF.For that i am trying to do it first on QNX neutrino.
Is it possible to run the binaries in neutrino?Is it the proper way?
please guide me, i am new to these things.



Thanks in advance
Sreesha
RE: Need info about executing  
With FTP you loose the +x flag ( which doesn't exists under Windows in the first place ). Make sure you
chmod +x it.
________________________________________
From: Sreesha AG [community-noreply@qnx.com]
Sent: Thursday, December 25, 2008 9:10 PM
To: general-ide
Subject: Need info about executing

Hi,

I have created a project and built in Moemntics IDE.Now i have copied the binaries of the project by FTP into QNX 
neutrino running on VMWare.
When i try to run that binary by moving to the copied directory i cannot execute.I am running by command ./ filename.
(cannot execute -Is a directory is the message being displayed)
I dont want to run the exe which is downloaded while building in IDE.
My final purpose is to run this project on CF.For that i am trying to do it first on QNX neutrino.
Is it possible to run the binaries in neutrino?Is it the proper way?
please guide me, i am new to these things.



Thanks in advance
Sreesha

_______________________________________________
General
http://community.qnx.com/sf/go/post19254
RE: Need info about executing  
Looks like you've got an extra space in your command, you really want:

	./filename

rather than:

	./ filename

As it was you were trying to execute the current directory hence the
error message you got.