serendipityguy
3rd October 2005, 14:05
sorry to ask, but i did look around and could not find any answers, so here is my question...
Scite will not compile
>g++ -pedantic -Os -fno-exceptions -c hello.cpp -o hello.o
>The system cannot find the file specified.
found this in the help file, and still with out a clue :confused:
When I try to compile/build/run my [some language] source files,
I get the following error: 'The system cannot find the file specified'.
Make sure that the path to your compiler is set correctly on your system.
Try to execute from console the same command you get in SciTE and see
if it works. You can also search in your [language].properties for the
compile commands used. If you have a different compiler or use different
arguments, edit the commands to suit your needs. The lines to look for:
command.compile.filepattern=
command.build.filepattern=
command.go.filepattern=
I am looking in the cpp.properties at here :eek:
cc=g++ -pedantic -Os -fno-exceptions -c $(FileNameExt) -o $(FileName).o
make.command=make
command.compile.*.cpp=$(cc)
command.build.*.cpp=$(make.command)
command.go.*.cpp=$(FileName)
# To make the Go command both compile (if needed) and execute, use this setting:
#command.go.needs.*.c=g++ $(FileNameExt) -o $(FileName)
and I am stuck, can some one please tell me where to look or what to do?
Scite will not compile
>g++ -pedantic -Os -fno-exceptions -c hello.cpp -o hello.o
>The system cannot find the file specified.
found this in the help file, and still with out a clue :confused:
When I try to compile/build/run my [some language] source files,
I get the following error: 'The system cannot find the file specified'.
Make sure that the path to your compiler is set correctly on your system.
Try to execute from console the same command you get in SciTE and see
if it works. You can also search in your [language].properties for the
compile commands used. If you have a different compiler or use different
arguments, edit the commands to suit your needs. The lines to look for:
command.compile.filepattern=
command.build.filepattern=
command.go.filepattern=
I am looking in the cpp.properties at here :eek:
cc=g++ -pedantic -Os -fno-exceptions -c $(FileNameExt) -o $(FileName).o
make.command=make
command.compile.*.cpp=$(cc)
command.build.*.cpp=$(make.command)
command.go.*.cpp=$(FileName)
# To make the Go command both compile (if needed) and execute, use this setting:
#command.go.needs.*.c=g++ $(FileNameExt) -o $(FileName)
and I am stuck, can some one please tell me where to look or what to do?