Re: [beagleboard] C compiler

2016-03-26 Thread William Hermans
You do not have to. I've been trying to tell you all that umask is already set by default. Screwing around with umask passed that is a recipe for disaster. Unless you know exactly what you're doing, and then you do not need to listen to me. Again, it was a terrible idea to even bring up umask, as

Re: [beagleboard] C compiler

2016-03-26 Thread John Syne
Strange. I’m not sure there is a way to not use umask. With umask=022, the purpose is to set the default permission for newly created files or directories, so only the owner has write permissions. How is that a security flaw? I guess you can always make umask=000, but then you are enabling

Re: [beagleboard] C compiler

2016-03-26 Thread William Hermans
I think it should be pretty clear, and if this is not abundantly clear to new users. **DO NOT USE umask* *Period. good bye, the end. One should leave the default settings and instead work with the system as intended. Instead of creating a serious potential security hole. On Fri, Mar 25, 2016 at

Re: [beagleboard] C compiler

2016-03-25 Thread John Syne
Hi Mike, The way I think about this is umask turns off permission, which means that the execute permission is provided by gcc. For example: MBPR:~ john$ umask 0022 MBPR:~ john $ touch test MBPR:~ john $ ls -la test -rw-r--r-- 1 john staff 0 Mar 25 22:15 test MBPR:~ john $ gcc -Wall -o hello

Re: [beagleboard] C compiler

2016-03-25 Thread Wadi Ben Rhouma
thx ,sorry i have another question, i'm not familiar with LINUX , so can u help me with this , how can i write a C code on the terminal and excute it on my BBB ?? what command i have to use??? 2016-03-25 11:55 GMT+01:00 Dieter Wirz : > gcc > > On Fri, Mar 25, 2016 at 11:40

Re: [beagleboard] C compiler

2016-03-25 Thread Wadi Ben Rhouma
thx ,sorry i have another question, i'm not failiar with LINUX , so can u help me with this , how can i write a C code on the terminal and excute it on my BBB ?? 2016-03-25 11:55 GMT+01:00 Dieter Wirz : > gcc > > On Fri, Mar 25, 2016 at 11:40 AM, Brainiac

Re: [beagleboard] C compiler

2016-03-25 Thread Dieter Wirz
gcc On Fri, Mar 25, 2016 at 11:40 AM, Brainiac wrote: > hi eeveryone, > > does the BeageleBone Black have a C compiler ? > > i want to controle a step by step motor using BBB with C language , and i'm > wondering if the BBB has an integrated C compiler > > > -- >

[beagleboard] C compiler

2016-03-25 Thread Brainiac
hi eeveryone, does the BeageleBone Black have a C compiler ? i want to controle a step by step motor using BBB with C language , and i'm wondering if the BBB has an integrated C compiler -- For more options, visit http://beagleboard.org/discuss --- You received this message because you

Re: [beagleboard] C compiler(s) for Beaglebone Black (BBB)

2015-11-06 Thread William Hermans
> > *What Linux C complier toolset(s) that can be used directly on the BBB? I > am thinking that I might have to use the host PC (Ubuntu15,xx) and then > load the compiled code on to the BBB (???).* > *I like the Python tools (no compilation needed) but I am not sure how one > can incorporate

[beagleboard] C compiler(s) for Beaglebone Black (BBB)

2015-11-05 Thread jship1962
What Linux C complier toolset(s) that can be used directly on the BBB? I am thinking that I might have to use the host PC (Ubuntu15,xx) and then load the compiled code on to the BBB (???). I like the Python tools (no compilation needed) but I am not sure how one can incorporate using the