I was messing about with project builder and went to compile my hello world application by project builder(pb) informs me that I am missing two libraries namely MacWindows.h , Quic…
just include:
#include <Carbon/Carbon.h>
you may also wish to manually dig through everything that Carbon.h includes for you (just a holder header loading other hea…
The dev tools are now ready for download at Apple's Developer Connection site. So create a user id, login, and go get 'em.
http://www.apple.com/developer/
I didn't notice this file earlier, but that may just be me. Its an 8MB file at the / directory. I'm wondering if its garbage and I can delete, or if its something critical. BTW, th…
Do you have any idea if there is either a fortran compiler or an egcs-like multiple-language compiler available for OS X? I am most interested in finding out if there is either a …
Hi, I needed Fortran but got away with using f2c (Fortran to C translater) instead. Download it from http://netlib.bell-labs.com
Contact me if you have trouble compiling it.
/P
Hi, I needed Fortran but got away with using f2c (Fortran to C translater) instead. Download it from http://netlib.bell-labs.com
Contact me if you have trouble compiling it.
/P
Thanks persquare. I'm familiar with f2c, but have not used it extensively. Is it fairly robust or does it tend to choke sometimes? My code is perfect, of course , but some of …
Quote:
Originally posted by stardoc:
On this track though, are C compilers then either included in default OS X install, or do you have to install the developer tools? …
Hi,
I've used f2c to compile Octave (a Matlab like environment for numerical analysis, http://www.che.wisc.edu/octave) which has large chunks of Fortran code. Never choked once...…
If you are doing Fortran development in OSX/Darwin, you really should use g77. I have used it before with PPC Linux, but I have never encountered it on BSD. It shouldn't be hard …
Thank you for the f2c info and the suggestion of g77. I hadn't even thought of g77 on OS X. I'll check into it. g77 is what I use under linux so it is particularly lame of me!
I've used f2c too. It did a good job. You can even read the C code it poops out. I used it on a single file fucntion call. So it was only a simple test of it.
I bet Darwin has an …
Hi persquare and absmiths,
I found g77/ecgs/gcc, but I'm a bit confused as to which pieces I need to combine to build a working compiler...any suggestions? In any event, my copy …
Has anyone had any luck installing g77? I have installed the apple developer tools and downloaded the source code for g77 seperately, but have no idea how to proceed. I'm a bit of …
It seems that there are many programs like f2c and g77 available for download, but once I have the files I have no idea what to do with them! Isn't there anyone out there who has m…
I have been trying to find any information on how to write a background only application (BOA) under Mac OS X. I know how to do this under Mac OS 9, but I cannot find any info on …
I think what you probably want is to write a daemon. They run in the background and provide service, eg. webserver, telnet server. If you just want to start something in the backgr…