[closed-case] Any way to use an older GCC toolchain with makepkg?

I'm having issues with a package in AUR: Code::Blocks SVN.
I'm writing this question in Newbie Corner because it is a general question with that particular PKGBUILD being a case of it.
Anyway, I'm running into compilation issues.  I believe if I could use an older version of g++, say 4.6.3 instead of 4.7.0, that the compilation would succeed.  My question: is it possible to have side-by-side GCC installs and how would I specify, perhaps in /etc/makepkg.conf, which to use for a PKGBUILD?
Edit:
Here is a thread on Code::Blocks own forums which highlights that GCC 4.7.0 has compilation issues with C::B.
Last edited by headkase (2012-04-16 07:13:39)

Mr.Elendig wrote:Install gcc46 or whatever you want from aur, export CC=path/to/gcc4.6binary. Same with CXX
The most recent non-cross-compiling GCC in AUR is GCC45.  It's an orphan and the latest comment in it says the build is broken.
Thank you though, I've decided to wait for a patch - that is the most reasonable thing all around.  However, there is a "gcc 4.7.0 broken" thread on Code::Blocks forums so I believe I'll post there as well - eventually, hopefully, the C::B SVN will Just Work™ on Arch
I'll mark this thread as closed-case, not because it is solved but because it has been fully considered.
Edit: originally edited title to "closed" but then realized that has forum-meaning so re-edited to "closed-case"
Last edited by headkase (2012-04-16 07:14:45)

Similar Messages

  • Is there any way to use the Korg Kaossilator Pro with Garageband 6.0.5?

    I'm getting pretty decent at working around with the newest version of Garageband. I've gotten my Akai MPK Mini (usb/midi keyboard) to work by adjusting a few preferences here and there, but for the last week I have been trying and trying to get my Korg Kaossilator Pro to hook up MIDI with Garageband. I understand if the program/software isn't as advanced as Logic or Ableton (be getting those soon!) If anybody could help me it would be MUCH appreciated
         P.S. if anybody is having troubles with exporting the AIFF/WAV/MP3 audio files I could give you a bit of help. I have figured out how to correctly export the audio loops and sounds that I have made from my Kaossilator Pro into Garageband! It is quite simple actually and is ALOT easier than you would think. Following the tempo/pitch for your song w/ these WAV/AIFF files is really easy too! I have made almost 4 songs now just using samples and loops from my Kaossilator Pro. I just would like to know if anybody has found out how to use it MIDI w/ Garageband? It would REALLY help me out Thanks!

    yeeeeah thats what i've been figuring out for the last 12 hours haha. kinda've a pain but hey it works out. u can still throw some pretty cool effects and what not. Even with MIDI cables running from my kaoss pro into my mac doesn't work. i can transfer the loops I make on my kaoss pro to the editor on my comp, then transfer those files to GB then go from there. It ***** there isn't a way to hook it in and sync it w/ GB so you can hit record then start jamming on the kaoss pro. Thanks for the response though!

  • Is there any way to use agfa snapscan with os lion

    Is there any way to use an old agfa snapscan with os lion

    See my FAQ*:
    http://www.macmaps.com/macosxnative.html#SCANNER

  • Hey guys i was wondering if i could downgrade my iphone 5 from ios 7.1.1 to 7.0.6 or .0.4 i have 7.0.6 and .0.4 shsh blobs but when i try to build a custom ipsw using ifaith it loads and never stop loading is there any way to downgrade to older ios 7 ?

    Hey guys i was wondering if i could downgrade my iphone 5 from ios 7.1.1 to 7.0.6 or .0.4 i have 7.0.6 and .0.4 shsh blobs but when i try to build a custom ipsw using ifaith it loads and never stop loading is there any way to downgrade to older ios 7 ?

    No, you cannot downgrade your iOS device. That's not supported by Apple.

  • Is there any way to get an older app version of apple tv remote?

    It's been several months since the apple tv remote app was updated to 3.0+.
    Once I updated, I have not been able to control my apple tv (2nd gen).
    I have 2 ipod touch (2nd gen as well) and neither can use the updated app to control our apple tv any more.
    We've had to resort to using the aluminum remote (which we constantly are losing)
    Long story short. Is there any way to get an older version of the app (say 2.4)? I've looked everywhere but everyone links back to itunes (and that only has the latest version). We're also stuck on iOS 4.2 because of hardware. There are a couple of sites out there but it seems that they are not legit as they ask for credit card info.
    Any help is appreciated.

    You can only do so if you downloaded a previous version at some point in the past, and it's still in the iTunes library on your computer. If that version is updated too, maybe the old version is in Trash/Recycling Bin.

  • Is there any way to use Internet Explorer on a Mac? I have one insurance company that I do business with that you must use internet explorer

    Is  there any way to use Internet Explorer on a Mac Book Pro? I have one company that I do business with that only uses Internet Explorer

    Internet Explorer is not available for Mac.
    But you can make Safari pretend to be Internet Explorer in some cases.
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        "Develop" menu will appear in the Safari menu bar.
        Click Develop, move mouse down to "User Agent".
        Select Internet Explorer from popup on the rightside.
        After using Internet Explorer, revert back to Safari, doing the same routine.

  • Any way to use cursor values inside other cursor by bulk collect?

    hi,
    Is there any way to use cursor get_tables value insdide loop get column if i am using bulk collect in both cursors?
    I tried a lot but i am nt able to do it.kindly help...
    create or replace procedure MULTIPLE_CURSORS_PROC is
    v_owner varchar2(40);
    v_table_name varchar2(40);
    v_column_name varchar2(100);
    cursor get_tables is
    select distinct tbl.owner, tbl.table_name
    from all_tables tbl
    where tbl.owner = 'SYSTEM';
    cursor get_columns is
    select distinct col.column_name
    from all_tab_columns col
    where col.owner = v_owner
    and col.table_name = v_table_name;
    begin
    open get_tables;
    loop
    fetch get_tables into v_owner, v_table_name;
    open get_columns;
    loop
    fetch get_columns into v_column_name;
    end loop;
    close get_columns;
    end loop;
    close get_tables;
    end ;

    hi there
    Refer this
    CREATE OR REPLACE PROCEDURE MULTIPLE_CURSORS_PROC
    IS
       TYPE scol IS VARRAY (10000) OF VARCHAR2 (32767);
       v_table_name    scol;
       v_column_name   scol;
       TYPE curtyp IS REF CURSOR;
       get_columns     curtyp;
       CURSOR get_tables
       IS
          SELECT   DISTINCT tbl.table_name
            FROM   all_tables tbl
           WHERE   tbl.owner = 'SYSTEM';
    BEGIN
       OPEN get_tables;
       LOOP
          FETCH get_tables BULK COLLECT INTO   v_table_name;
          FOR indx IN v_table_name.FIRST .. v_table_name.LAST
          LOOP
             SELECT   DISTINCT col.column_name
               BULK   COLLECT
               INTO   v_column_name
               FROM   all_tab_columns col
              WHERE   col.table_name = v_table_name (indx);
             FOR ind IN v_column_name.FIRST .. v_column_name.LAST
             LOOP
                DBMS_OUTPUT.put_line (v_column_name (ind));
             END LOOP;
          END LOOP;
          EXIT WHEN get_tables%NOTFOUND;
       END LOOP;
       CLOSE get_tables;
    END MULTIPLE_CURSORS_PROC;regards
    Hitesh

  • Any way to use filter to exclude tables in navagation pane?

    Is there any way to use filter to exclude a set of tables from the table list in the navagation pane? I have a number of tables (15+) starting with the same prefix eg. AB123 that I would like eliminate from the list. They sort right to the top and I always have to scroll down, and go through the show more dialog to see the entire list.
    I am sure I'm missing something, but not sure what. Help Center has nothing to offer.
    Thanks
    Glenn

    This has been mentioned on the forum before - basically the need for more elaborate ways to filter (multiple conditions as well as 'not like'). It is on our list for future consideration, meaning post-production.
    -- Sharon
    Message was edited by:
    sbkenned

  • Is there any way to use -useLegacyAOT option in FlashBuilder 4.6?

    I need to build my ipa with old version of Engine because i have some problems about loading images from outside. Since with Air 15 it is default engine, and i cannot quit Air 15 because of the iTunes specs. I cannot add -useLegacyAOT=yes to compiler options on Adobe Flash Builder 4.6 because it seems that it can be added at FB4.7.
    So is there any way to add this options when i am using FB4.6
    Thanks in advance.

    DeepakJ wrote:
    Hi,
    Is there any way to use a control break on Dept column in a SQL query to have a Output-2 instead of Output-1.
    Is there any way to modify the SQL query.
    SQL
    select dept, loc, count(*)
    from dept
    group by dept, locOutput-1
    Dept      Loc       Count(*)
    10         AA        1
    10         BB        2
    10         CC        2
    20         AA        2
    20         BB        2Output-2
    Dept      Loc       Count(*)
    10         AA        1
    BB        2
    CC        2
    20         AA        2
    BB        2
    Yes, using the <tt>lag</tt> analytic function and specified ordering of the data:
    select
        nullif(d.deptno, lag(d.deptno) over (order by d.deptno, d.loc, e.mgr nulls first)) deptno
      , nullif(d.loc, lag(d.loc) over (order by d.deptno, d.loc, e.mgr nulls first)) loc
      , e.mgr
      , count(*) n
    from
        dept d
          join emp e
            on d.deptno = e.deptno
    group by
        d.deptno
      , d.loc
      , e.mgr
    order by
        d.deptno
      , d.loc
      , e.mgr nulls first;
    DEPTNO  LOC       MGR   N
        10  NEW YORK         1
                      7782   1
                      7839   1
        20  DALLAS    7566   2
                      7788   1
                      7839   1
        30  CHICAGO   7698   4
                      7839   1
        40  BOSTON    7698   2
                      7902   1

  • I'm using TestStand/Labview to do a string value test. Is there any way to use a variable in the edit string value test?? This forces you to hard code a string to test against.

    I'm using TestStand 2.0/Labview 6i to do a string value test. Is there any way to use a string variable in the edit string value test instead of an actual string?? This forces you to hard code a string to test against.

    Hi ART,
    You can also use the LimitLoader step to load your string into to step similar to the Numeric Step type.
    There should be an example of this in the Resource Library | TestStand
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Is there any way to use Control Break in a SQL Query

    Hi,
    Is there any way to use a control break on Dept column in a SQL query to have a Output-2 instead of Output-1.
    Is there any way to modify the SQL query.
    SQL
    select dept, loc, count(*)
      from dept
    group by dept, locOutput-1
      Dept      Loc       Count(*)
      10         AA        1
      10         BB        2
      10         CC        2
      20         AA        2
      20         BB        2Output-2
      Dept      Loc       Count(*)
      10         AA        1
                 BB        2
                 CC        2
      20         AA        2
                 BB        2Thanks,
    Deepak

    DeepakJ wrote:
    Hi,
    Is there any way to use a control break on Dept column in a SQL query to have a Output-2 instead of Output-1.
    Is there any way to modify the SQL query.
    SQL
    select dept, loc, count(*)
    from dept
    group by dept, locOutput-1
    Dept      Loc       Count(*)
    10         AA        1
    10         BB        2
    10         CC        2
    20         AA        2
    20         BB        2Output-2
    Dept      Loc       Count(*)
    10         AA        1
    BB        2
    CC        2
    20         AA        2
    BB        2
    Yes, using the <tt>lag</tt> analytic function and specified ordering of the data:
    select
        nullif(d.deptno, lag(d.deptno) over (order by d.deptno, d.loc, e.mgr nulls first)) deptno
      , nullif(d.loc, lag(d.loc) over (order by d.deptno, d.loc, e.mgr nulls first)) loc
      , e.mgr
      , count(*) n
    from
        dept d
          join emp e
            on d.deptno = e.deptno
    group by
        d.deptno
      , d.loc
      , e.mgr
    order by
        d.deptno
      , d.loc
      , e.mgr nulls first;
    DEPTNO  LOC       MGR   N
        10  NEW YORK         1
                      7782   1
                      7839   1
        20  DALLAS    7566   2
                      7788   1
                      7839   1
        30  CHICAGO   7698   4
                      7839   1
        40  BOSTON    7698   2
                      7902   1

  • Time Machine Beautiful Background - any way to use it apart from TM

    The picture of moving universe as the background of TM processes is beautiful. Is there any way to use it apart from TM (screen saver, desktop image) ?

    Not easily. It's not a single display. The "moving parts" are separate.
    The basic background is at:
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Resources/vortex.p ng
    You could select and right-click it, and select it as your desktop picture, but it won't move.
    Or display it with Preview, save it as a jpg, import it into iPhoto, make an album containing it, then select the album as your screen saver.

  • Any way to use a quick and dirty icon like cLabel in the quick tools toolbar?

    I am a javascript cut-and-paster with ability to cobble things together.
    In previous versions of Acrobat, I had tools that were added to the toolbar using the technique shown in this script:
    app.addToolButton({cName: "MyFlattenButton",
       cLabel: "Flatten",
       cEnable: "event.rc = (app.doc != null);",
       cExec: "flattenPages();"
    That would create a toolbar button with the "icon" that read "Flatten" which is all that I needed.  I could click on it and it would flatten all pages in the document.
    I used this to create several different tools, all with different names and cLabels.
    This script still works in Acrobat XI (it adds the tool to the add-on tools list, and then I can add it from there to the quick tools toolbar).  The cLabel names show up in the add-on tools list, but not in the quick tools toolbar.  In the toolbar they all use the same generic icon (but they all work correctly).
    From reading in this forum I see that there is a way to create a custom icon but it does not look easy.  Is there any simple way to just have text appear as the icon as I used to do for earlier versions of Acrobat?
    Thanks.

    One further question...
    I found a code snippet somewhere online that attempted to deal with this issue.  That led me to this (failed) solution:
    this.importIcon("myIconFlat", "/D/J/CAD Standards/Stamps/Acrobat tools/flatten.jpg", 0);
    var flatIcon = util.iconStreamFromIcon(this.getIcon("myIconFlat"));
    app.addToolButton({cName: "MyFlattenButton",
       cLabel: "Flatten",
       oIcon: flatIcon,
       cEnable: "event.rc = (app.doc != null);",
       cExec: "flattenPages();"
    The problem there is that importIcon is not allowed from a folder-level javascript, apparently.  Would there be any way to use the importIcon part of this from the console and then cut and paste some output into the rest of the script?  Just looking for a way to get the icon into my script.

  • Is there any way to use a file transfer protocol to upload files to icloud?

    Is there any way to use a file transfer protocol to upload files to icloud?

    Unfortunately, no.
    You will need a 3rd party web host to upload your websites to. Depending on the version of iWeb you are using you have a couple of publishing options:
    iWeb ’09 (3.0.4) you can publish to an FTP Server or a local folder. ( With the built in FTP in iWeb you will end up with an address like “www.YourDomain.com/sitename/Home.html )
    iWeb ’08 you can publish your website to a local folder
    Basically all Web Hosting companies are iWeb-compatible.
    If you’re looking for a good hosting I would recommend IX Web Hosting I have been using them to host my own websites for several years now and that their customer support is awesome too.
    http://jeffnitschke.com/IXWebHosting.html
    http://jeffnitschke.com/wordpress/2012/06/how-do-i-move-my-mobileme-site-ix-web- hosting-blog/
    "I may receive some form of compensation from my recommendation or link."

  • Is there any way to use a MacBook Pro as a router to set up a wireless connection for XBOX live.

    Is there any way to use a MacBook Pro as a router to set up a wireless connection for XBOX live.

    Mac OS X 10.6 Help: Sharing your Internet connection

Maybe you are looking for

  • Re: To obtain values from fields in a web page.

    Pamella -- Thank you for the detailed response. In order to solve your problem, you must do two things: 1) convert your field widgets to HTML elements via WindowConverter::FieldToElement( ... ) 2) grab the information you want from the incoming reque

  • HOW CAN I USE TIME MACHINE TO BACKUP ONLY PART OF MY FILES ON EXTERNAL D?

    Hi, I am using time machine to back up all my files at the moment. but I want to get rid of video and photo material from my laptop and keep it on the external hard drive to which the time machine backs up my stuff. how can i do this without losing t

  • Have to sign in more than once

    For some reason, I have recently been asked several times to sign in to gain access to iTunes (version 12.1.0.50). This is both very annoying and time-wasting,and I was not required to do this before. Can anyone please offer a remedy??  Any help woul

  • How do I convert a DOM document to a CLOB?

    I have a JDOM document that I convert to a DOM document. I have java code (that works) to take an XML file from harddrive and stream into temporary CLOB and convert to XMLType. Now I need to take the DOM document and convert to a CLOB to get it into

  • UWL action

    Hello, When I'm connected to SAP Portal I can see the UWL messages, like in the R/3 SBWP transaction. But I'm having a problem when I'm trying to "Approve" or "Refuse" an item. - If I do it in SBWP transaction, everything is ok: the system shows me t