gcc-arm-linux-gnueabi package not found on 10.04 LTS (Lucid)

84

There seems to be an error in this article. According to the Ubuntu website, gcc-arm-linux-gnueabi is only available in the universe repository since maverick (10.10) (search for the package name on http://packages.ubuntu.com/ or visit the URL http://packages.ubuntu.com/gcc-arm-linux-gnueabi).

On lucid, you can install the Linaro packages from the Linaro Toolchain backports PPA, as described in the second part of the article.

Share:
84

Related videos on Youtube

Div
Author by

Div

Updated on September 18, 2022

Comments

  • Div
    Div over 1 year

    I have included a UIPicker in the program.And it contains 2 contents for eg A and B.What i need is suppose if the user has selected A from the picker, it should move the another storyboard. I am able to move to another view but it is showing nothing. I will paste the code below :-

    - (void)pickerView:(UIPickerView *)thePickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component 
    
     {
    
         DemoViewController *demo =[[DemoViewController alloc] init];
    
         AnotherViewController *another =[[AnotherViewController alloc] init];
    
         NSString *content=[aray objectAtIndex:row];
    
    
          if ([content isEqualToString:@"A"]) 
          {
    
                [self presentModalViewController:demo animated:YES]; 
    
          } 
          else {
    
                [self presentModalViewController:another animated:YES]; 
    
               }
    

    }

    Can anyone please tell me why I am getting a blank storyboard?

  • aminfar
    aminfar about 12 years
    Thanks for the answer. So if download the maverick-compatible package, am I able to install it manually using dpkg?
  • h3.
    h3. about 12 years
    @aminfar You might, but there's a good chance that it won't have the required dependencies. The package in the PPA should install seamlessly.