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 1095095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:04:14+00:00 2026-05-17T00:04:14+00:00

I’m getting an undefined symbol error even though I think I’ve defined it okay.

  • 0

I’m getting an undefined symbol error even though I think I’ve defined it okay. From reading other posts and Googling, it seems that the linker is failing to find the appropriate symbol. I’m new to C so I’m sure I’m just missing something stupid.

glen-urbans-macbook-pro:everybit glurban$ make
gcc -O3 -DNDEBUG -std=c99 -Wall -Wstrict-prototypes -I. -m64 -DBUILD_64 -c bitarray.c -o bitarray.o
gcc -o everybit main.o ktiming.o bitarray.o tests.o -arch x86_64 -framework CoreServices
gcc -o everybit_harvey main.o ktiming.o bitarray_harvey.o tests.o -arch x86_64 -framework CoreServices
Undefined symbols:
  "_bitarray_reverse", referenced from:
      _test_reverse in tests.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
make: *** [everybit_harvey] Error 1

In tests.c:

#include "bitarray.h"
...

/* Peform a reversal operation on test_ba. */
static void testutil_reverse(size_t bit_off, size_t bit_len) {
  assert(test_ba != NULL);
  bitarray_reverse(test_ba, bit_off, bit_len);
  if (test_verbose) {
    bitarray_fprint(stdout, test_ba);
    fprintf(stdout, " rotate off=%llu, len=%llu\n",
        (unsigned long long) bit_off, (unsigned long long) bit_len);
  }
}

static void test_reverse(void) {
  testutil_frmstr("10000101");
  testutil_reverse(0, 8);
  testutil_expect("10100001", 4);
}

test_case_t test_cases[] = {
  test_headerexamples,
  test_8bit,
  test_moreflips,
  // ADD YOUR TEST CASES HERE
    test_reverse,
  NULL // This marks the end of all test cases. Don't change this!
};

In bitarray.c,

/* Reverse a bit array */
void bitarray_reverse(bitarray_t *ba, size_t bit_off, size_t bit_len){
    size_t tmp;
    int i;
    for(i = 0; i < bit_len/2; i++){
        tmp = bitarray_get(ba, bit_off + i);
        bitarray_set(ba, bit_off + i, bitarray_get(ba,bit_off + bit_len - 1 - i));
        bitarray_set(ba, bit_off + bit_len - 1 - i, tmp);
    }
}

In bitarray.h:

void bitarray_reverse(bitarray_t *ba, size_t bit_off, size_t bit_len);

TIA

  • 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-17T00:04:15+00:00Added an answer on May 17, 2026 at 12:04 am

    bitarray.o is compiled into an object file everybit BUT there is no reference in this line to everybit hence the undefined symbols…

    gcc -o everybit_harvey main.o ktiming.o bitarray_harvey.o tests.o -arch x86_64 -framework CoreServices
    Undefined symbols:
      "_bitarray_reverse", referenced from:
          _test_reverse in tests.o
    ld: symbol(s) not found
    collect2: ld returned 1 exit status
    make: *** [everybit_harvey] Error 1
    

    What is _harveyreferring to?

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

Sidebar

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.