Thread: Setting SciTE to work with cygwin

  1. #1
    Registered User
    Join Date
    May 2008
    Posts
    25

    Setting SciTE to work with cygwin

    Hello,

    Been trying to figure this out for an hour now. How do you get SciTE to work with cygwin. I have installed scite into the programs folder. cygwin is in windows root directory.

    Just it would be easier to go tools > compile through scite than use cygwin through the command line.

    Thanks.

  2. #2
    Registered User
    Join Date
    May 2008
    Posts
    25
    Edit:

    I changed the cpp.properties to

    ccopts=-pedantic -Os
    c=C:\cygwin\bin\g++ $(ccopts) -c $(FileNameExt) -o $(FileName).o
    cc=g++ $(ccopts) -c $(FileNameExt) -o $(FileName).o
    ccc=gcc $(ccopts) -c $(FileNameExt) -o $(FileName).o

    make.command=make
    command.compile.*.c=$(c) -std=c99
    command.build.*.c=$(make.command)
    command.go.*.c=./$(FileName)

    and I get this from compile:

    >C:\cygwin\bin\g++ -pedantic -Os -c adip.c -o adip.o -std=c99
    >Exit code: 1


    and this from go:
    >./adip
    >Access is denied.

    This is the code I'm using to test it.

    Code:
    #include <stdio.h>      
    #include <stdlib.h>   
    #include <string.h>  
    
    
    main()
    {
        printf("HelloWorld");	
    	
    	
    }
    Last edited by Witchfinder; 02-21-2009 at 04:38 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Cygwin GCC setting for heap
    By stlait00 in forum C Programming
    Replies: 1
    Last Post: 05-02-2006, 05:32 AM
  2. Eclipse - Palm - undefined reference to - Cygwin
    By gustavolaufer in forum C++ Programming
    Replies: 0
    Last Post: 03-02-2006, 07:33 AM
  3. Problems in getting OpenGL to work
    By zonf in forum C Programming
    Replies: 5
    Last Post: 02-13-2006, 04:48 AM
  4. Why won't my OpenGL work?
    By Raigne in forum C++ Programming
    Replies: 7
    Last Post: 11-26-2005, 11:53 AM
  5. Developers Wanted
    By Quasicom in forum Projects and Job Recruitment
    Replies: 2
    Last Post: 08-24-2005, 12:46 AM