Search results

  1. S

    preprocess g95 #pragma GCC set_debug_pwd

    That is it exactly! I can see from the man page how we know to use -P " -P Inhibit generation of linemarkers in the output from the preproces- sor. This might be useful when running the preprocessor on some- thing that is not C code, and will be sent to a...
  2. S

    preprocess g95 #pragma GCC set_debug_pwd

    I still haven't found a real solution. My work around is to edit the Makefile such that: .F.o: $(CPP) $(CPPOPT) $< | sed '/^#pragma/d' > $*.tmp.f $(FC) -c $(FOPTS) $*.tmp.f mv $*.tmp.o $*.o Is there a real solution to this problem or does everyone use this hack...
  3. S

    unknown server in go->network->servers

    I looked at my local home network last night and noticed that in the finder in Go --> Network --> Servers I have a link called "w-mob101-128-62-110-149.public.utexas.edu" When I click on this I see that it is a link to my entire harddrive. I have recently used the University of Texas...
  4. S

    Newbie: Xterm help

    Are you sure about needing to set $DISPLAY ? When I check I do not have $DISPLAY set, but I can type "open-x11 gimp" and it works just fine. Frankly, I've also had many problems, getting the X applications to work as I want them to, but I've not found that the problem is associated with...
  5. S

    Trying to reinstall XDarwin

    (1) Are you certain that "system-xfree86" is the name of the package? When I look in /sw/var/lib/dpkg/available I find a package that includeds... Package: xfree86 Section: x11-system Installed-Size: 0 Maintainer: Benjamin Reed <ranger@befunk.com> Architecture: darwin-powerpc...
  6. S

    What do you use to Graph? Origin, Sigmaplot, Excel?

    I use both matlab and gnuplot (in octave) for data analysis, but for publication quality figures I prefer xmgrace. I find xmgrace a little more cumbersome to use, but worth the work for the final images. http://plasma-gate.weizmann.ac.il/Grace/
  7. S

    Gnuplot And Xcode

    sudo apt-get install gnuplot Then you can use gnuplot with either XDarwin, X11.app, or any GUI that you chose (I like octave).
  8. S

    Gnuplot And Xcode

    I've gotten gnuplot to work, but I'm not certain what you're asking when you refer to Xcode. I don't use gnuplot to debug software if this is the question. The link that you give points to GUI's for gnuplot. The simplest interface for 2D plots that I've found is octave. The plots are...
  9. S

    external Hard Drives not mounting on PowerBook

    I don't know about your particular drive (when I click on the specs it bounces me to some other page). What I do know is that LaCie drives claim that you can power external drives with powered usb-hubs. I know this says nothing about Targa, but this is the best I can do. "The LaCie...
  10. S

    external Hard Drives not mounting on PowerBook

    Please post a link to the device from the manufacturer's website so we can see the specs.
  11. S

    print to xerox phaser 8400DP in duplex

    Hi, I install the printer normally. 1) I have installed the Xerox drivers because when I tried installing the printer the first time I did not have the 8400 printers. 2) I goto system preferences and enter print and fax 3) I click the add printer icon on the top. 4) I chose IP...
  12. S

    print to xerox phaser 8400DP in duplex

    In Layout there is no two-sided checkbox. When I goto the Setup --> Installation Options there is not duplex option either. There is an option for "feature set" where the you can select DP, B, D, DX, N I know that this is the 8400DP and that the DP means that there is a built in...
  13. S

    print to xerox phaser 8400DP in duplex

    Hi, At my work we have a Xerox Phaser 8400DP on our network. I have a PowerBook G4. I've installed the Xerox drivers and am able to print to the printer. I am unable to print using the Duplex mode. I don't know if there is a check box in the set up that I can't seem to see or if...
  14. S

    gcc not working

    Xcode installs gcc-3.3 in /usr/bin/gcc which I think is in the default $PATH. I don't know about gcc-4 You can check your path with the command "echo $PATH" sb
  15. S

    preprocess g95 #pragma GCC set_debug_pwd

    From http://g95.sourceforge.net/ The problem isn't g95, but cpp. When I run cpp in GNU/Linux I don't get the "#pragma GCC set_debug_pwd" line. Before last night I've never even seen the word pragma.
  16. S

    preprocess g95 #pragma GCC set_debug_pwd

    When trying to compile code written in FORTRAN95 with g95 I encounter the error shown below. It is apparent that make is preprocessing the file structures.F with cpp, but cpp then writes a line that starts with "#pragma GCC set_debug_pwd" at the top of the structure.tmp.f file which causes...
  17. S

    ssh login and password in one line

    You can ssh into sites without a password if you create an ssh key pair. There are tons of sites about how to do this, here is one (http://www.centos.org/docs/2/rhl-cg-en-7.2/openssh-clients.html) sb
  18. S

    can't find x11.h library

    Hi, I've posted this to the X11 forum, but in hindsight this is a better forum to post to. I'm sorry about double posting, but I can't seem to eliminate my original post. I'm trying to compile the software package xbsa on my Macintosh powerbook. I can't seem to find the headers...
  19. S

    download xcode 1.5

    I found an external link to the xcode tools with google. I was having problems finding them within the apple site i.e. I could only find information on version 2.1. Thanks again, sb Hi, I'm running OSX Panther. I want to download the xcode tools to run on Panther, but I can't seem...
  20. S

    x11.h

    Hi, I'm trying to compile xbsa on my Macintosh powerbook. I can't seem to find the headers x11.h which I need to point my configuration script to. Any help with this would be appreciated. Thanks, sb
Back
Top