Undefined Symbols For Architecture X86_64 Mac

IOS, Mac, tvOS, watchOS Programming MacRumors attracts a broad audience of both consumers and professionals interested in the latest technologies and products. We also boast an active community focused on purchasing decisions and technical aspects of the iPhone, iPod, iPad, and Mac platforms. Undefined symbols for architecture x8664 on Mac OS X Issue #61, Undefined symbols for architecture x8664 on Mac OS X #61. TisonKun opened this issue on Sep 18, resolve by gcc main.c -luv mbp-mbp 09:24:18 /bin $ gcc connect.c -o connect.

Question or issue on macOS:

I am using the gfortran compiler on mac osx mavericks. I have installed Xcode and command line tools. I am trying to compile a simple helloworld program with gfortran to test whether everything works, but unfortunately it doesn’t work. The error message seems to suggest that I have no main function, but I don’t see the error in the code:

But when i try to compile using

I get the following error:

I do not understand what is wrong and I am on the verge of despair. I tried with gfortran 4.8.2 as well as gfortran 4.9.0, I tried reinstalling Xcode and Command Line Tools but nothing seems to work.

I am aware similar questions have been asked, but I was not able to find a solution to my problem. I would be happy even with a sloppy workaround, as long as I can get the compiler to run…

How to solve this problem?

Oh my dear. Found the solution about a minute after staring the bounty. Rather than using the recommended installer from https://gcc.gnu.org/wiki/GFortranBinaries I just installed it with

The gfortran now compiled without complaining.

Hope this helps!

Undefined Symbols For Architecture X86_64 Mac

Hi there!

I'm really new in all of this, and I don't know anything about terminal and stuff... I (think) installed openCV 2.4.10 and qtCreator 3.3.0 using terminal commands:

  1. cd /Users/Sergio/Downloads/opencv-2.4.9
  2. mkdir build
  3. cd build
  4. cmake -G 'Unix Makefiles' ..
  5. make -j8
  6. sudo make install

It seems ok, folders appear on usr/local/... I don't know how to use QtCreator so I create a console project and add this to the .pro:

@
#-------------------------------------------------

#-------------------------------------------------

Undefined

QT += core

QT -= gui

TARGET = cosa
CONFIG += console
CONFIG -= app_bundle

TEMPLATE = app

QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9

SOURCES += main.cpp

INCLUDEPATH += '/usr/local/include'

LIBS += -L'/usr/local/lib'
-lopencv_core
-lopencv_highgui

@

Then into the main.cpp added this (from an example i got online):

@
#include 'opencv2/opencv.hpp'
#include 'opencv2/highgui/highgui.hpp'

using namespace cv;

int main( int argc, char **argv)
{
Mat image = imread( argv[1], CV_LOAD_IMAGE_COLOR );

namedWindow( 'Original', CV_WINDOW_NORMAL | CV_WINDOW_KEEPRATIO | CV_GUI_EXPANDED );
imshow( 'Original', image );

Mac

// Sobel example from http://docs.opencv.org/doc/user_guide/ug_mat.html#visualizing-images
Mat gray;

cvtColor( image, gray, CV_BGR2GRAY );

Mat sobelx;

Sobel( gray, sobelx, CV_32F, 1, 0 );

double minVal = 0.0;
double maxVal = 0.0;

minMaxLoc( sobelx, &minVal, &maxVal ); //find minimum and maximum intensities

Undefined Symbols For Architecture X86_64 Mac Clion

Mat draw;

sobelx.convertTo( draw, CV_8U, 255.0/(maxVal - minVal), -minVal * 255.0/(maxVal - minVal) );

namedWindow( 'Sobel', CV_WINDOW_NORMAL | CV_WINDOW_KEEPRATIO | CV_GUI_EXPANDED );
imshow( 'Sobel', draw );

while ( waitKey( 33 ) != 27 )
;

return 0;
}

X86_64

@

Symbols

When I click on Run (is that the way I should do that?) in the issue section displays:

Undefined

@error: symbol(s) not found for architecture x86_64
error: linker command failed with exit code 1 (use -v to see invocation)@

And the compile output shows this:

@09:59:55: Running steps for project cosa...
09:59:55: Configuration unchanged, skipping qmake step.
09:59:55: Starting: '/usr/bin/make'
/Users/Sergio/Qt5.4.0/5.4/clang_64/bin/qmake -spec macx-clang CONFIG+=debug CONFIG+=x86_64 -o Makefile ../cosa/cosa.pro
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -mmacosx-version-min=10.9 -Wl,-rpath,/Users/Sergio/Qt5.4.0/5.4/clang_64/lib -o cosa main.o -F/Users/Sergio/Qt5.4.0/5.4/clang_64/lib -L/usr/local/lib -lopencv_core -lopencv_highgui -framework QtCore -framework DiskArbitration -framework IOKit
Undefined symbols for architecture x86_64:
'cv::namedWindow(std::string const&, int)', referenced from:
_main in main.o
'cv::Sobel(cv::_InputArray const&, cv::_OutputArray const&, int, int, int, int, double, double, int)', referenced from:
_main in main.o
'cv::imread(std::string const&, int)', referenced from:
_main in main.o
'cv::imshow(std::string const&, cv::_InputArray const&)', referenced from:
_main in main.o
'cv::cvtColor(cv::_InputArray const&, cv::_OutputArray const&, int, int)', referenced from:
_main in main.o
'std::allocator<char>::allocator()', referenced from:
_main in main.o
'std::allocator<char>::~allocator()', referenced from:
_main in main.o
'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&)', referenced from:
_main in main.o
'std::basic_string<char, std::char_traits<char>, std::allocator<char> >::~basic_string()', referenced from:
_main in main.o
'std::ios_base::Init::Init()', referenced from:
___cxx_global_var_init in main.o
'std::ios_base::Init::~Init()', referenced from:
___cxx_global_var_init in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [cosa] Error 1
09:59:55: The process '/usr/bin/make' exited with code 2.
Error while building/deploying project cosa (kit: Desktop Qt 5.4.0 clang 64bit)
When executing step 'Make'
09:59:55: Elapsed time: 00:00.@

Why is that? can anybody help me, please? I read a lot about it but i can't understand a word :(

I need to start using this programs in a class and i don't have any idea about anything!!

Thank you :)