Sun compiler for linux

when i was installing compiler everythings have gone well i haven't got any problem my platform is intel 865 chipset

Hi Alexey,
The actual code i want to compile is proprietary so will not be able to post it. Anyway the compiler gives the same error on a simple mpi file as below so i dont think it has anything to do with the code i am trying to compile. And as i mentioned earlier the code does compile and run without the -xipo flag.
------example.f ------
program mpi_test
include 'mpif.h'
integer ierr
integer rc
integer myID
integer nproc
integer nslaves
call mpi_init( ierr )
call mpi_comm_rank( MPI_COMM_WORLD, myID, ierr )
call mpi_comm_size( MPI_COMM_WORLD, nProc, ierr )
nSlaves = nProc-1
write(*,*) 'I am proc #',myID
call mpi_finalize(rc)
end
Thanks
Winston

Similar Messages

  • Optimizer bug in C compiler for Linux

    Save the following as bug.c:
    Bug report against Sun C for Linux:
    $ suncc -V
    cc: Sun C 5.9 Linux_i386 Build27_2 2006/08/02
    usage: cc [ options] files.  Use 'cc -flags' for details
    $ cat /etc/SuSE-release
    SuSE Linux 9.3 (x86-64)
    VERSION = 9.3
    $ uname -r
    2.6.11.4-21.8-smp
    Compiled w/ -xO2 or lower, this program runs to completion:
    $ suncc -xO2 bug.c -o bug -lpthread && ./bug
    Hello from thread 0
    Hello from thread 1
    Hello from thread 2
    Hello from thread 3
    DONE.
    However, when compiled w/ -xO3 (or higher) this program hangs:
    $ suncc -xO3 bug.c -o bug -lpthread && ./bug
    Hello from thread 0
    Hello from thread 1
    Hello from thread 2
    Hello from thread 3
    ...hung here...
    ^C
    Changing "#if 0" to "#if 1" changes a "while (cond) {body;}" to a
    "do {body;} while(cond)", and is sufficient to work around the
    problem in this case.
    #include <stdio.h>
    #include <stdlib.h>
    #include <inttypes.h>
    #include <pthread.h>
    static unsigned int numthreads = 4;
        static void test_pthread_barrier(void) {
          static pthread_cond_t barrier_cond[2] =
            { PTHREAD_COND_INITIALIZER, PTHREAD_COND_INITIALIZER };
          static pthread_mutex_t barrier_mutex[2] =
            { PTHREAD_MUTEX_INITIALIZER, PTHREAD_MUTEX_INITIALIZER };
          static volatile unsigned int barrier_count = 0;
          static volatile int phase = 0;
          const int myphase = phase;
          pthread_mutex_lock(&barrier_mutex[phase]);
          barrier_count++;
          if (barrier_count < numthreads) {
    #if 0
            do {
              pthread_cond_wait(&barrier_cond[myphase], &barrier_mutex[myphase]);
            } while (myphase == phase);
    #else
            while (myphase == phase) {
              pthread_cond_wait(&barrier_cond[myphase], &barrier_mutex[myphase]);
    #endif
          } else {
            barrier_count = 0;
            phase = !phase;
            pthread_cond_broadcast(&barrier_cond[!phase]);
          pthread_mutex_unlock(&barrier_mutex[!phase]);
    static void * thread_main(void * arg) {
      printf("Hello from thread %d\n", (int)(uintptr_t)arg);
      test_pthread_barrier();
      return NULL;
    int main(void) {
        int i;
        pthread_t *threadid = (pthread_t *)malloc(sizeof(pthread_t)*numthreads);
        for(i=0;i<numthreads;i++) {
          void *threadarg;
          pthread_attr_t attr;
          pthread_attr_init(&attr);
          pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM); /* ignore failures */
          pthread_create(&threadid, &attr, &thread_main, (void *)(uintptr_t)i);
    pthread_attr_destroy(&attr);
    for(i=0;i<numthreads;i++) {
    void *retval = NULL;
    pthread_join(threadid[i], &retval);
    free(threadid);
    printf("DONE.\n");
    return 0;

    You can refer to this bug as 6499729.
    The bug status will soon be visible on bugs.sun.com

  • Run C program compiled for Linux on Mac x11?

    Hi,
    Is it possible to run a c-code program compiled for Linux on x11? If this is not possible, is there a way to have a linux platform runninn os 10.6.8 so I can use these programs?
    I knew little about Linux or X11, so I don't know if it is possible or how to recompile the program for x11.
    Thanks!

    Linux compile code will not run on Mac OS X, and even if you violated the Mac OS X license to run Mac OS X in virtual machine on top of Linux, the Mac environment would still not run the Linux program.  The Linux program needs to run on Linux.
    If your Linux program is X11 based, then it is possible to run the program on Linux and have the output displayed on your Mac.   Start an Applications -> Utilities -> Terminal session, and run the command
    ssh -Y [email protected]
    LinuxPrompt> run_your_Linux_program
    The ssh -Y will establish an X11 DISPLAY tunnel between your Mac and the Linux system.  When you run an X11 based app on the Linux system via this ssh session, the X11 display output will be sent back to the Mac.
    NOTE:  Many Open Source programs have Mac OS X ports.  Sometimes there are actual Mac OS X binaries, and sometimes you have to build them yourself.  There are also services that will do the heavy lifting of installing a ported Open Source app, such as MacPorts.org and FinkProject.org

  • JIT / Static compiler for Linux/J2SDK 1.4

    Hello friends,
    Could you please suggest a static / JIT compiler to native code for Linux / J2SDK platform? If you are using one, I would appreciate any comments.
    Thank you.

    Ok, but if you compile a java program directly into an
    executable (thats what I think he's talking about),
    then its always faster than a VM that has to analyze,
    etc first.mkmm... untrue....
    when you want to compile into native code before runtime, then you don't know runtime variables, and you cant optimize out the ones that are for example loaded at the beginning of the program, and will never change.
    but if hotspot dedects that such a case appears, that it has to run some method over and over again, just to return the same value all the time, then it may just substitute that method with the returned value....
    or something like that.... (havent coded any hotspot engine yet, so woun't know for sure ;)

  • PL/I compiler for Linux?

    Hello there, I have lately found a book about PL/I that aroused my interest in that language. Now I want to know if there exists a free (as in "costs no money", but free as in "open source" would be even better, of course) compiler for that old language. I have found a project on sourceforge, but it was abandoned at version 0.0.15 at 2007 or so. On another page, I saw a compiler that was advertised for SuSe and Red Hat, but that didn't seem to be free of charge
    Does anyone here know a resource for such a compiler?

    If you look at the CVS changelog, there was activity last year including an update to work with GCC 4.4. Create a PKGBUILD to checkout the CVS tree and see if it works.

  • Gcc compile for linux from terminal

    Hi all,
    I've usually done my compiling in OSX via terminal with gcc, using a few flags, but as of recently, wanted to build for some linux systems as well and was wondering if it was possible to compile on the mac side using specific flags instead of having to compile them on the linux boxes themselves? What I'm using now:
    gcc -arch ${arch} -mmacosx-version-min=10.4 file.c -o file
    I have a mac on our network specifically for building, recompiling and distribution which is why I'd like to keep it there instead of having to do it on each individual machine...

    You want to cross-compile on the Mac and target Linux? Certainly this is possible, but harder than it looks, and it looks pretty hard. Personally, I would suggest building it on a Linux VM running on the Mac. You'll get the best of both worlds that way.

  • How to change Makefile file name in sun studio for linux 11?

    Greetings,
    For historical reasons, our makefiles are called Make.bld
    Sun Studio refuses to accept these as makefiles.
    It'd be a big pain to modify our entire build system to take makefile as the name.
    Is there a way to instruct sun studio to accept a different filename for makefiles ?
    Thanks,
    Bill

    There is no supported way of getting the Sun Studio IDE (or NetBeans) to recognize
    Make.bld as a Makefile. However, the solution Nik pointed out with a .nbattrs file will
    work.
    Here is a complete file which, if copied to each directory containing a Make.bld file
    will work. However, if the directory already contains a .nbattrs file you should edit
    the existing one and add the <fileobject>...</fileobject> lines rather than overwriting
    the entire file.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE attributes PUBLIC "-//NetBeans//DTD DefaultAttributes 1.0//EN"
    " http://www.netbeans.org/dtds/attributes-1_0.dtd">
    <attributes version="1.0">
    <fileobject name="Make.bld">
    <attr name="MAKEFILE_TYPE" stringvalue="foo"/>
    </fileobject>
    </attributes>
    Note: I split the DOCTYPE line myself. It should be a single line in the file (although
    its probably OK if split, I didn't verify that so I'll suggest a single line).
    I should warn you that the next release of the Sun Studio IDE will no longer use
    .nbattrs files and you'll need a different solution. A preliminary version of the next
    release is currently available by downloading Sun Studio Express 3. The IDE is
    significantly better than the current one! You also get a lot of the same features
    by downloading NetBeans 5.5 with the C/C++ Development Pack.
    Gordon

  • Do anybody know, if there is a roadmap of Suns compiler as OSS?

    Hi!
    I have read at
    http://www.heise.de/newsticker/result.xhtml?url=/newsticker/meldung/90435
    that Sun plans to publish version 12 of Sun Studio for Linux and Solaris free of charge on 4.6.2007 at
    http://developer.sun.com/sunstudio
    This also then includes again its C/C++ and Fortran Compiler for Linux and Solaris.
    I have also heard, that Sun plans to make its compiler, with which (Open)Solaris is compiled, also OpenSource.
    Do you know, if it is right, that Suns compiler will be OpenSource in the future?
    And do you know, if there existing a roadmap, in which year this will be?
    Greatings
    theuserbl

    http://forum.java.sun.com/thread.jspa?threadID=5179230

  • Suggestion for Linux Compilers Alpha Build 18 Readme

    The Alpha Build 18 Readme at
    <http://developers.sun.com/prodtech/cc/documentation/linux_ea/readme.html>
    does not make it clear how one should file bug reports against the
    build. Perhaps you could add a statement saying, "to file a bug
    report, start a new topic on the Sun Studio C forum", assuming that
    this is actually what you want people to do.

    Paul,
    "Compilers and Tools on Linux" page specifically says that " these early builds available is strictly for evaluation and to gather feedback thru the Sun Studio for Linux forum".
    We are trying to address all the problems reported on forums, however forums are not intended to be used as a primary framework for filing bugs.
    We are working on providing a convenient way to report bugs not just through a support contract channel (which will be still available for you if you have one). Thats still in progress AFAIK.
    regards,
    __Fedor.

  • Why is skype for web not being developed for linux?

    i tried to get the skype extention for chrome on linux. and well i got that icon error. so i tried to work arround the error and was seccessful in getting the plugin installed. but the actual skype for web aplication doesn't seem to want to utilize the skype calling extention even after using a user agent to trick the skype for web page into thinking i am using chrome on windows. i end up hacing to install the windows plugin. and the skype for web page doesn't like to use the Skype Calling extention.but anyway  iwanted to know why the skype for web plugin is not being compiled for linux. i see no reason why someone couldn't just compile the plugin for linux with the already existing code. i would be willing to volunteer to compile the plugin and release the plugin for linux.

    Hi and welcome to the Skype Community,
    Skype for Web is currently a Beta version with support for calling via the plugin being limited to popular browsers on Windows and Mac. Unfortunately supporting calling on Chrome for Linux requires a bit more than simply recompiling the plugin. Going forward we are looking to add more features and allow calling on even more platforms, potentially even Linux.

  • CORBA - idltojava for Linux for jdk1.2.2

    Hello !
    I need the idltojava compiler for linux Operating system for Jdk 1.2.2 (so the idlj for jdk1.3 will not do). I looked on the site here but only windows and solaris versions are available.Can anyone guide me to some download site where I can get this ?
    Thanks in advance,
    Lakshmi Nayak

    Hello !
    I looked at the site but could not find the idltojava for java versions before 1.3.
    However I have found out from another source that idltojava compiler for linux for java version 1.2 is not available.
    But Thanks a lot Frank-Michael for guiding me to such a good site(http://blackdown.org) for java-linux ! :-)
    Thanks,
    Lakshmi Nayak

  • Sun Studio Compilers for Linux: Problems with undefined variables using CC

    I am experiencing the following errors below while trying to compile C++ programs using Sun C++ from the latest release of Sun Studio Compilers for Linux Alpha, on Red Hat Enterprise Linux 4 with kernel 2.6.9-34.EL and Ubuntu Breezy Badger 5.10 with kernel 2.6.12-10-686. I get the same exact errors on both OS's and on two different machines.
    root@ubuntu:/home/jc/cs225/Machine Problems/cs225/mp1/cs225_mp1# make
    CC -c -g string.cpp
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/iosfwd", line 74: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/iosfwd", line 75: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 191: Error: "," expected instead of "state_type".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 194: Error: Use ";" to terminate declarations.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 261: Error: "," expected instead of "get_state".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 265: Error: Use ";" to terminate declarations.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 299: Error: "," expected instead of "state_type".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 302: Error: Use ";" to terminate declarations.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 410: Error: "," expected instead of "get_state".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 414: Error: Use ";" to terminate declarations.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 506: Error: The function "strstr" must have a prototype.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 523: Error: The function "strcspn" must have a prototype.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 529: Error: The function "strspn" must have a prototype.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/rwlocale", line 125: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/rwlocale", line 125: Error: Template parameter std::stateT requires a type argument.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/rwlocale", line 130: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/rwlocale", line 130: Error: Template parameter std::stateT requires a type argument.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/limits", line 214: Error: Template declarations cannot have extern "C" linkage.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/limits", line 221: Error: Template declarations cannot have extern "C" linkage.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/limits", line 277: Error: Template declarations cannot have extern "C" linkage.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/limits", line 335: Error: Template declarations cannot have extern "C" linkage.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/limits", line 392: Error: Template declarations cannot have extern "C" linkage.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/limits", line 443: Error: Template declarations cannot have extern "C" linkage.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/limits", line 504: Error: Template declarations cannot have extern "C" linkage.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/limits", line 558: Error: Template declarations cannot have extern "C" linkage.
    Compilation aborted, too many Error messages.
    make: *** [string.o] Error 1
    Except on ubuntu, it has one more error
    "/usr/include/wctype.h", line 47: Error: A declaration was expected instead of "}".
    and what is on line 47 is below
    __END_NAMESPACE_C99
    When I comment this line out, that particular error does not show up but still the other errors above still show up.
    From the testing I did, it appears to have these problems for most of the C++ programs I have written, especially the ones that involve object oriented programming. All programs that I wrote do not have these problems with g++ or Sun CC for Solaris. It does however work fine only for small fraction of the programs I have written. I dont quite understand why it works in some cases and others it doesnt, but I know for sure, that it should be working for all cases when Sun CC from Sun Studio 10 on Solaris 10 for X86 has no problems compiling the same programs.

    I tried workaround number 2 from the 3 choices that were listed by horsh. That fixes the mathcalls.h problem but still I have the following errors.
    jcurran2@ubuntu:~/cs225/Machine Problems/cs225/mp1/cs225_mp1$ make
    CC -c -g string.cpp
    "/usr/include/wctype.h", line 47: Error: A declaration was expected instead of "}".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/iosfwd", line 74: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/iosfwd", line 75: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 191: Error: "," expected instead of "state_type".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 194: Error: Use ";" to terminate declarations.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 261: Error: "," expected instead of "get_state".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 265: Error: Use ";" to terminate declarations.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 299: Error: "," expected instead of "state_type".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 302: Error: Use ";" to terminate declarations.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 410: Error: "," expected instead of "get_state".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 414: Error: Use ";" to terminate declarations.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 506: Error: The function "strstr" must have a prototype.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 523: Error: The function "strcspn" must have a prototype.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/traits", line 529: Error: The function "strspn" must have a prototype.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/rwlocale", line 125: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/rwlocale", line 125: Error: Template parameter std::stateT requires a type argument.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/rwlocale", line 130: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/rwlocale", line 130: Error: Template parameter std::stateT requires a type argument.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/codecvt", line 55: Error: mbstate_t is not defined.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/codecvt", line 55: Error: Template parameter std::stateT requires a type argument.
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/codecvt", line 61: Error: "," expected instead of "state_type".
    "/opt/sun/LinuxCompilers/sunstudiomars/prod/include/CC/Cstd/rw/codecvt", line 63: Error: Use ";" to terminate declarations.
    Error: Cannot continue processing because of prior errors.
    Compilation aborted.
    make: *** [string.o] Error 1
    jcurran2@ubuntu:~/cs225/Machine Problems/cs225/mp1/cs225_mp1$
    Can someone please respond? There is more to the problem. Perhaps
    there are more glibc headers that have problems. In addition, if Sun wants to port the Sun Studio Compilers for linux to be stable on all linux distributions I suggest using VM ware and installing several linux distrobutions as virtual machines and testing this software on each virtual machine to see the problems that occur on each distribution. That way you might be able to uncover more problems to find a solution that will work best for portability on all linux distributions.

  • Sun studio 11 for linux

    i successfully installed sun studio on a linux machine. i am debugging my first program.
    the problem i am having is local variables (stack variables) do not show the correct
    values. i can tell by the execution and examining the results that the local variables are
    really correct, but what is displayed is garbage. global/static variables display the
    correct values. anyone else having such an issue ?

    Sun Studio debugger has supported gcc/g++ for a while now, so
    that feature should definately work. Let us know more information
    about the bug, so we can fix it.
    If you have time and interest to experiment with pre-release compilers,
    you could download the latest "Sun Studio Express" release, and try
    out an early access version of the Sun compilers on Linux. But there
    are still a few things that don't work right. C should be very robust by now,
    but the Sun C++ and Fortran compilers still have some more porting
    work to finish before all the compiler features are available on Linux.
    http://developers.sun.com/prodtech/cc/downloads/express.jsp
    --chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • License for cross-compilation for solaris 10 sparc on Linux x86

    I'd like to do cross-compilation for solaris 10 sparc on Linux x86 using gcc (for linux). To do that, I have to copy libraries (/lib/64) and includes (/usr/include) from a sparc machine to my linux machine.
    The compilation will be run on about (up to) 50 Linux machines (by various developers). We also have 3 solaris-10-SPARC machines.
    I wonder if Solaris license allows me to copy the includes and libs to perform compilation elsewhere.
    I also checked "OTN License Agreement for Oracle Solaris", but it looks like Oracle allows for installing "the programs" on up to 3 machines, but I need it on 50.
    Thanks for any suggestions or redirections to a proper place where I can get an answer.
    Marek

    When installing Solaris 10 01/06 on a Dell 1850 I receive an error message during the install saying "no disk found". I assume that the drive/controller is not recognized. The Dell 1850 is listed under the HCL for Solaris 10 10/06. I don't believe I can use the Solaris(TM) Device Driver for the LSI MegaRAID Adapter floppy with 1/06. I don�t have any other Solaris boxes up so I can�t build a jump start server. Any suggestions?

  • Problem to compile mxi-2 driver for linux 2.4.4

    Hello,
    I have a MXI-2 (VME/PCI) hardware and I'd like to install the appropiate
    software for my PC which runs under SuSE Linux 7.2 (kernel 2.4.4-64GB-SMP).
    I have succesfully installed NIVISA and NIVXI software (RPMs) and then
    I'm trying to compile (using make) the vxi module for linux. It does not work...
    Do you have a solution ?
    Thanks in advance.
    Remi CORNAT
    Error log from make :
    gcc -o vxi.o -DVXI_MAJOR=0 -c -O -Wall -D__KERNEL__ -DMODULE -I/lib/modules/2.4.4-64GB-SMP/build/include vxi.c
    vxi.c: In function `vxi_vma_nopage_shm':
    vxi.c:64: structure has no member named `vm_offset'
    vxi.c:65: warning: implicit declaration of function `MAP_NR'
    vxi.c: At top level:
    vxi.c:77:
    warning: excess elements in struct initializer
    vxi.c:77: warning: (near initialization for `vxi_vm_ops_shm')
    vxi.c:77: warning: excess elements in struct initializer
    vxi.c:77: warning: (near initialization for `vxi_vm_ops_shm')
    vxi.c:77: warning: excess elements in struct initializer
    vxi.c:77: warning: (near initialization for `vxi_vm_ops_shm')
    vxi.c:78: warning: excess elements in struct initializer
    vxi.c:78: warning: (near initialization for `vxi_vm_ops_shm')
    vxi.c: In function `vxi_mmap':
    vxi.c:86: structure has no member named `vm_offset'
    vxi.c:102: structure has no member named `vm_offset'
    vxi.c: At top level:
    vxi.c:114: warning: initialization from incompatible pointer type
    vxi.c:115: warning: initialization from incompatible pointer type
    vxi.c:116: warning: initialization from incompatible pointer type
    vxi.c:118: warning: initialization from incompatible pointer type
    make: *** [vxi.o] Error 1

    As of August 2001, National Instruments does not have a driver that is supported under the 2.4 kernel of Linux. The latest version of NI-VXI is supported under the 2.2 kernel for our PCI-MXI-2 and VXIpc-870 controllers.
    Trey Hamilton
    Applications Engineer
    National Instruments
    http://www.ni.com/support

Maybe you are looking for

  • SQL*LOADER connection issue

    I have oracle 9i installed, if i'm to connect to the database using the sys account i getv a message saying have to connect as sysdba or sysoper. Ok so i use "username/password@database as sysdba", and that works fine i'm able to connect. But this do

  • Clearing the actions panel and loading an action set using a script.

    I've been trying to figure out how to do this now for two days straight, I'm still completely stuck and can't manage to do it. Scriptlistener shows nothing for the "Clear actions" and "Load actions" menu items when the function is called in both CS5

  • Cant edit default GPO

    dear folks..... im a domain admin but when i want to edit some settings of default GPO and save it it says access denied !!!! what to do?? its windows server 2008 standard edition DC. i have given myself full right but though it says access denied al

  • Are there any conflicts or problems having 2 browsers on the same computer using windows 7

    I have no experience with having different browsers on the same computer and want to know if there are any conflicts or problems before I download a second browser.

  • Auto disable WiFi and Bluetooth while on battery

    Does anybody know of an application or if OS X Snow Leopard can auto disable wifi and bluetooth whilst I'm on battery, and then auto turn them on again when I'm plugged in to the outlet?