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…
Quote:
Originally posted by thunter:
I have been trying to find any information on how to write a background only application (BOA) under Mac OS X.
You are probably…
I don't have the info right in front of me but you could add a flag to the CustomInfo.plist "Application Setting" called isBGOnly YES. This makes it background only...
Several times now, my Project folder including source files has gotten deleted, leaving the object code in a *.build folder. In my course of building and debugging, I lose track o…
ProjectBuilder is the only IDE I have ever seen that works the way it does when removing a file from the project. Normally when you remove a file from a project it just removes th…
Is it possible to add another programming language to the ProjectBuilder IDE? I know it supports C/C++/Obj-C/Java so it seems extensible, but I wanted to see if other thought it wo…
you can throw c,c++,objective c,java,assembly language all in the same program in project builder I believe.Project builder does not support any other languages.Download and compil…