Parse errors in ib_linux.h when I try to compile C code for GPIB in Linux.

Keep getting parse errors starting at line 63 of ib_linux.h when I try to compile C code linked
to the drivers. Using ver 0.6 driver, compiling using gcc name.c cib.o -o name, and I have
ugpib.h as an include in the c code. The Linux box currently has the 2.2 kernel running.
Any ideas?

Hello-
It shouldn't be necessary to compile by hand. After the 0.6 driver is untarred, there should be an INSTALL script to run. Be sure to "su" to have root permissions before running this script. It may also be necessary to "chmod" the INSTALL file before doing a "./INSTALL"
Randy Solomonson
Applications Engineer
National Instruments

Similar Messages

  • How do I solve the following message from Code Blocks on a OS X (10.10.2): "Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo." ?. It appears when I try to compile any code.

    Whenever I try to compile any code the following messagem appears: "greeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo."
    I'm using CodeBlocks v. 13.12. Its file (codeblocks-2.app) is inside the App folder.

    I suggest you ask whomever makes CodeBlocks.
    They would be the most knowledgeable.

  • When I go onto the app store on my iPad when I try to redeem a code for a gift card, after I type I. My password it just asks me to type it in again. Same with viewing my account. What do I do?

    This has been happening all of today. I go to the app store on my iPad and I choose to redeem a gift voucher and after I type in my password it just asks for it over and over again. Same with viewing my account. I can still buy apps without having to put my password in.

    Nevermind, it's just randomly worked.

  • Why am I getting an ORA-04052 error when I try to compile a Procedure?

    Hi,
    The following procedure I'm getting an ORA-04052 error when I try to compile the following procedure.
    CREATE OR REPLACE PROCEDURE APPS.Find_String (
    pin_referenced_name IN dba_dependencies.referenced_name%TYPE)
    IS
    cursor cur_get_dependancy
    is
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;
    v_owner  varchar2(40);
    v_name   varchar2(50);
    v_type   varchar2(40);
        BEGIN
           dbms_output.put_line(upper(pin_referenced_name)||' is found in the following objects.');
           dbms_output.put_line(' ');
           dbms_output.put_line(RPAD('OWNER', 30, ' ')||RPAD('NAME', 60, ' ')||RPAD('OBJECT TYPE', 30, ' '));
           dbms_output.put_line('-------------------------------------------------------------------------------------------------------------------');
            FOR i IN cur_get_dependancy
            LOOP
                v_owner := RPAD(i.owner, 30, ' ');
                v_name  := RPAD(i.name, 45, ' ');
                v_type  := RPAD(i.type, 30, ' ');
                dbms_output.put_line(v_owner ||v_name|| v_type);
            END LOOP;
    END find_string;I'm using the link [email protected]. The procedure compiles for other database links used in the cursor including the one commented to the right of the code 'prod.world'.
    What's even stranger is that I took the SELECT statement
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;out of the procedure and ran it on the command line using the @pinp.world link, the SQL statement ran just fine. But when I tried to compile the above procedure with that exact same SQL statement with the exact same link I get the following string of errors.
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02068: following severe error from PINP
    ORA-03113: end-of-file on communication channelHow can the link work just fine in a regular SQL statement but then cause an error when its compiled in code that otherwise compile just fine when using any other link or even just a plain database. Does anyone have any suggestions?

    OK Justin,
    Here's the query by itself run in another database using the @pinp.world link and querying the dba_dependencies table in the pinp.world database. As you can see the query using this link works just fine returning the requested rows. I can't figure out why the compiler is having an issue with essentially this same query when I try to compile it in a cursor in TOAD. Also this is the database (dev1.world) that I'm trying to compile this Procedure in.
    By the way I'm in an Oracle 9.2.0.6 database and TOAD v9.2.
    SQL> conn apps/apps1@dev1
    Connected.
    SQL> SELECT distinct owner, name, type
      2    FROM [email protected]
      3   WHERE lower(referenced_name) = lower('ALL_USERS')
      4     AND referenced_type <> 'SYNONYM'
      5     AND owner <> 'SYS'
      6   order by name;
    OWNER                          NAME                           TYPE
    PUBLIC                         ALL_USERS                      SYNONYM
    XDB                            DBMS_XDBUTIL_INT               PACKAGE BODY
    XDB                            DBMS_XDBZ0                     PACKAGE BODY
    SYSTEM                         MVIEW_EVALUATIONS              VIEW
    SYSTEM                         MVIEW_EXCEPTIONS               VIEW
    SYSTEM                         MVIEW_FILTER                   VIEW
    SYSTEM                         MVIEW_LOG                      VIEW
    SYSTEM                         MVIEW_RECOMMENDATIONS          VIEW
    SYSTEM                         MVIEW_WORKLOAD                 VIEW
    ORASSO                         WWCTX_API                      PACKAGE BODY
    PORTAL                         WWCTX_API                      PACKAGE BODY
    ORASSO                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWPOB_API_PAGE                 PACKAGE BODY
    PORTAL                         WWPOF                          PACKAGE BODY
    ORASSO                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWSBR_EDIT_ATTRIBUTE           PACKAGE BODY
    PORTAL                         WWSBR_FOLDER_PORTLET           PACKAGE BODY
    PORTAL                         WWSBR_USER_PAGES_PORTLET       PACKAGE BODY
    ORASSO                         WWUTL_API_PARSE                PACKAGE BODY
    OWNER                          NAME                           TYPE
    PORTAL                         WWUTL_API_PARSE                PACKAGE BODY
    PORTAL                         WWUTL_EXPORT_IMPORT_LOV        PACKAGE BODY
    ORASSO                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWV_CONTEXT                    PACKAGE BODY
    PORTAL                         WWV_CONTEXT_UTIL               PACKAGE BODY
    PORTAL                         WWV_DDL                        PACKAGE BODY
    PORTAL                         WWV_GENERATE_UTL               PACKAGE BODY
    PORTAL                         WWV_GLOBAL                     PACKAGE
    PORTAL                         WWV_MONITOR_DATABASE           PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_SPECIFIC_USER     PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_USER              PACKAGE BODY
    PORTAL                         WWV_SYS_DML                    PACKAGE BODY
    PORTAL                         WWV_SYS_RENDER_HIERARCHY       PACKAGE BODY
    PORTAL                         WWV_THINGSAVE                  PACKAGE BODY
    PORTAL                         WWV_UTIL                       PACKAGE BODY
    PORTAL                         WWV_UTLVALID                   PACKAGE BODY
    38 rows selected.
    SQL>Let me know what you think.
    Thanks again.

  • I keep getting "Error Subject token invalid" when I try to activate HBO GO on my Apple TV 3.

    I keep getting "Error Subject token invalid" when I try to activate HBO GO on my Apple TV 3. Everything else is activating fine. My ISP is XFinity. Anyone seen this? I have done a complete reset and restore, and have the latest software.

    Hello dprice3885,
    Thanks for using Apple Support Communities.
    Take a look at the Wi-Fi troubleshooting since you can access the network but not the content.
    Apple TV: Basic troubleshooting
    http://support.apple.com/kb/HT6106
    Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS4546
    Have a nice day,
    Mario

  • ANY ONE KNOW WHAT IS ERROR 3 IN ITUNES WHEN I TRY TO RESTORE

    Please help ,what is (UNKOWN ERROR 3) in itunes when i try to restore ipad 3 to ios7 please help >   
    Does someone know how to fix it?

    I am also facing the same issue.
    four days back, my power buttton stopped working.
    Then my sim card slot stopped reading like it was stuck at gsm/cdma band.
    Even without simcard it said searching..
    then I changed the power button and antenna strip myself as my iphone5 is uk ee and i live in india.
    Everything was fine and I booted the phone.
    The power button worked like a new device... but the searching problem still remained.
    I hard resetted my phone but to no vail. even Find My phone was not turning off.
    then I forced my phone to recovery mode and downloaded iphone5,2 7.0.2,11A501_restore.ipsw from web and flashed it.
    At the start it recognised and everything was good until the "restoring iphone firmware" was stuck at the end point.
    I tried every trick on net. Even tried to downgrade.. but it was blocked.
    at the last it is either stuck at firmware or itunes unknown error (3)
    Please somebody help me to recover this PAPERWEIGHT to a phone again...

  • Error 2615 -  and -50   when i try to back up playlist

    i either get error 2615 or -50 when i try to make back up discs- any help out there plz!!!! I have gone thru a stack of dvd-rs!!!!!!

    Welcome to the Apple Community.
    If your back up continually fails, you might try turning off back up on your mobile device (settings > iCloud > storage & backup) and then deleting the backup file from iCloud by swiping the backup file on the mobile device (settings > iCloud > storage & backup > manage…) and then turning back up on again.

  • Keep getting "There was an error downloading this product" when I try to download updates to Adobe Photoshop CS5?

    Keep getting "There was an error downloading this product" when I try to download updates to Adobe Photoshop CS5? Uninstalled and re-installed program but still won't download updates? I have a Mac Book OS X Version 10.9.5.

    If you're trying to update through the Help menu > Updates, you should know that the Adobe auto updater in CS5 and earlier versions is an unmitigated, monumental piece of cr@p. It Is totally unreliably and fails in one or another of a great variety of ways.
    Adobe began to get their act together as of CS6, with which I'm staying for exactly the same reason you are staying with CS5.
    One has to update manually, by looking for, downloading and applying any and all applicable updates, including the Adobe Camera Raw plug-in which comes separately.
    If the latter is what you've been doing, you need to let us know where you are trying to download the update from, what browser you are using to attempt to effect the download, and what platform you are in.
    You also need to disable any and all virus protection, and make sure you are not behind any active software or hardware Fire Wall.
    This is the URL for Photoshop Macintosh updates:
    Adobe - Photoshop : For Macintosh
    and for Windows:
    Adobe - Photoshop : For Windows
    Next time, please be substantially more informative, rather than plaintive or narrative (see next post).  You are not addressing Adobe here.
    Thank you.

  • HT2404 When I try to download free updates for apps, I've suddenly started getting an error message saying: You cannot update this software since you have not owned the major version of this software." But I do own the apps. And I haven't changed my ID

    When I try to download free updates for apps, I've suddenly started getting an error message saying "You cannot update this software since you have not owned the major version of this software".
    But I HAVE owned the software, for ages. (And, in any case, the apps in question are all free.)
    And I don't have multiple Apple IDs.
    What can I do?
    Any advice much appreciated

    This can occur if you bought the machine used and iLife was reinstalled with another AppleID.
    This also can occur if the "free apps" you downloaded have paid upgraded versions and/or are now payware and you can't get updates.
    All software from MAS is copy protected, it might be free as in "no charge" but it's not free in the sense you can share it with others.

  • HT3951 I have several tv episodes stuck in my downloads on my iPad. I receive an error, unable to download when I try to resume downloading. I can't clear them out of the download queue. How do I get rid of these from download?

    I have several tv episodes stuck in my downloads on my iPad. I receive an error, unable to download when I try to resume downloading. I can't clear them out of the download queue. How do I get rid of these from download?

    You can always finish the downloads in iTunes on your computer and then the TV Shows to the iPad. Launch iTunes and go to Store>Check for available downloads. Finish the downloads and then sync the iPad.
    As far as trying to finish the downloads on the iPad .....
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>Store>Sign in and then try to download again.

  • My PC works OK with dowload, but when I try to make an update for Premiere Elements 9, it says "An error occured during download, quit and retry later"

    My PC works OK with dowload, but when I try to make an update for Premiere Elements 9, it says "An error occured during download, quit and retry later" - What can I do ?

    try a manual update,  http://www.adobe.com/downloads/updates/

  • A error message pops up when I try to click top singles "see all" saying "Your request could not be completed the item you've requested is not currently available in the US store" when a few minutes ago it allowed me to do so.

    A error message pops up when I try to click top singles "see all" saying "Your request could not be completed the item you've requested is not currently available in the US store" when a few minutes ago it allowed me to do so.

    When I open the store in general (from my PC - Windows Vista), I get a message saying "Your request could not be completed. The item you've requested is not currently available in the Canadian Store."
    On my iPad, Apps opens, but I can't browse new apps listings, but not their details.
    Help?

  • HT1567 error -3 comes up when I try to burn a cd

    error -3 comes up when I try to burn a cd from and itunes playlist

    hi Tracy!
    when itunes freezes up, just leave it alone, running nothing else on your computer, and within 1-3 minutes, itunes will begin to burn your cd
    by any chance, are you running a Dell? used to see "two-minute hangs" sometimes under these circumstances with Dells back in the 4.9 days. (the thread where Dan and I troubleshot one has been deleted due to lack of activity, though.)
    we got past that one by heading to the Dell website and checking for upgrades for that particular model of PC. may be worth following up on in your case.
    love, b

  • Error 1202 come up when I try to connect

    Error 1202 comes up when I try to log onto itunes store. The only thing that will show is my account info. Help

    Can you explain a little more what you mean by "internet addresses"? What kind of Mac are you using (your profile says Macbook Pro, you've posted in the iMac forum), are you at home or elsewhere, and what internet setup do you have?
    Are you clicking on the Airport/Wifi icon in your toolbar at the top right of the screen to connect to a network? If you're seeing more than one network there, the others are usually your neighbours' wireless networks - there's no way to hide those.
    Matt

  • Why does it say "unknown error" when I try to purchase new episodes for the walking dead game?? :(

    Why does it say "unknown error" when I try to purchase new episodes for the walking dead game?? I have all of billing info up to date, changed my password etc etc and still get an "unknown error" message. Help!

    - Try a reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Store and sign out and then sign back in.

Maybe you are looking for

  • Mac Pro 5,1 10600 or 10600E RAM?

    Hello! I have my Mac Pro.(Mid 2010 2.8GHz Quad Core) Is there a difference between RAM 10600 or 10600E? Does this? http://www.ebay.com/itm/12GB-3X4GB-DDR3-PC3-10600-1333MHZ-128X8-240PIN-ECC-HYNIX -CHIP-W13RX12GH-/170861066599?pt=US_Memory_RAM_&hash=i

  • White background transparency and black box outline removal ?

    Hello, I need to know how to do two things with Illustrator CS (yes, the old version). First, I need to turn all white areas to transparent. I have two imported images which have white square backgrounds behind their pictures / designs. I need to ove

  • Problems saving files

    Hi, We run a set of PowerMac G5s and iMac G5s off a Xserve all of which are on 10.4.6. We're experiencing alot of AFP problems as mentioned elxewhere in the forum and I've tried most of the recommended fixes with no luck. But in the last couple of da

  • How to use Designiconclicked?

    Is there anybody know how to use command "Designiconclicked" in Bex Analyzer? If yes, pls give me an example how to use it. Thank you very much.

  • ITunes match creating 100s of playlists with no content

    Since upgrading (?) to itunes match I know have hundreds of playlists that  iIdid not create.They hav eno content in theM. Tre all titled "Gen" and they thave slowed my itunes down to a crawl and are immposable to delete. any ideas?