You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling and linking test executables I get the following error:
Undefined symbols for architecture arm64:
"_munit_errorf_ex", referenced from:
_test_compare in test.c.o
"_munit_suite_main", referenced from:
_main in test.c.o
ld: symbol(s) not found for architecture arm64
I guess the support for Apple's M1 is not there yet, is it?
The text was updated successfully, but these errors were encountered:
I just now built a vanilla munit using the Makefile on a Apple M1 box, and it seems to link and run just fine. The box also has Rosetta (i think it's called) installed (which adds support for some other architectures, comes with Xcode), but the symbols in the example executable I built seem to be arm64 architecture.
@nobodyindustries Did you have any progress on your end since 15 May?
Hello, I know its been years. Just sharing what I encountered and did - turns out I suck at compilation and including munit.c during compilation solved it.
Undefined symbols for architecture arm64:
"_munit_error_ex", referenced from:
_test_function_one in main.o
"_munit_suite_main", referenced from:
_main in main.o
ld: symbol(s) not found for architecture arm64
Next, I added munit.c in the compilation statement (I cloned the munit repo into my project directory): gcc main.c file2.c file3.c file4.c munit/munit.c -o output_file
Compiler didn't complain and I was able to run ./output_file
When compiling and linking test executables I get the following error:
Undefined symbols for architecture arm64:
"_munit_errorf_ex", referenced from:
_test_compare in test.c.o
"_munit_suite_main", referenced from:
_main in test.c.o
ld: symbol(s) not found for architecture arm64
I guess the support for Apple's M1 is not there yet, is it?
The text was updated successfully, but these errors were encountered: