Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3434630
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T07:43:20+00:00 2026-05-18T07:43:20+00:00

Essentially, what I want to do is this: gcc foo.c -o foo.o ar rcs

  • 0

Essentially, what I want to do is this:

gcc foo.c -o foo.o
ar rcs foo.a foo.o
gcc bar.c -o boo.o
ar rcs bar.a bar.o foo.a

I want to archive both an object and a static library into another static library. Unfortunately, the last command doesn’t end up containing foo.o (it contains bar.o and foo.a), so when I get to the linking stage, the linker can’t find the symbols from foo.o.

Is there a way to do what I want here? I’m doing all of this out of make, so I’m looking for a solution that doesn’t involve extracting & re-archiving the objects (which seems kinda painful). Is there a way to make this kind of “archive from another archive” setup work?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T07:43:21+00:00Added an answer on May 18, 2026 at 7:43 am

    Actually, you do not want to archive one whole ‘.a’ file inside another. You might want to archive the members of the one archive in the other – but that is a wholly different operation.

    The ‘ar’ program is perfectly capable of storing source files, gzipped tar files, HTML files, XML files, and pretty much any other type of file in the ‘.a’ (and the ‘.a’ suffix is only conventional, not mandatory) — try it some time. However, it treats object files (and only object files) specially, and makes them available for use by the linker (‘ld’), but the linker only uses such files if the extension is ‘.a’.

    So, you want to have two libraries:

    1. foo.a containing just foo.o
    2. bar.a containing bar.o and all the objects from foo.a

    Short of doing as you suggest and extracting the objects from foo.a and building them into bar.a, the only alternative is to list the members of foo.a as members of bar.a too:

    FOO_OBJS = foo.o
    BAR_OBJS = bar.o $(FOO_OBJS)
    
    foo.a: $(FOO_OBJS)
        $(AR) $(ARFLAGS) $@ $(FOO_OBJS)
    bar.a: $(BAR_OBJS)
        $(AR) $(ARFLAGS) $@ $(BAR_OBJS)
    

    I am assuming that your example is minimized. If it is not, then why bother with two libraries. Anything that uses just code from foo.o will only link foo.o even if given bar.a to link with. (It would be slightly different if these were shared objects, but it would probably still be better to use just one rather than two shared objects.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.