Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Curl with Catalina C++ failing and getting "Undefined symbols for architecture x86_64"

I am trying to run an example c++ program with Catalina 10.15:

#include </usr/local/opt/curl/include/curl/curl.h>

int main(void) {

    CURL* curl;
    CURLcode result;

    curl = curl_easy_init();
    curl_easy_setopt(curl, CURLOPT_URL, "https://www.wikipedia.org");

    result = curl_easy_perform(curl);

    curl_easy_cleanup(curl);

    return 0;
}

I have installed curl with:

brew install curl

I don't understand why this is not working and I am getting:

Scanning dependencies of target 2700
[ 50%] Building CXX object CMakeFiles/2700.dir/main.cpp.o
[100%] Linking CXX executable 2700
Undefined symbols for architecture x86_64:
  "_curl_easy_cleanup", referenced from:
      _main in main.cpp.o
  "_curl_easy_init", referenced from:
      _main in main.cpp.o
  "_curl_easy_perform", referenced from:
      _main in main.cpp.o
  "_curl_easy_setopt", referenced from:
      _main in main.cpp.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[3]: *** [2700] Error 1
make[2]: *** [CMakeFiles/2700.dir/all] Error 2
make[1]: *** [CMakeFiles/2700.dir/rule] Error 2
make: *** [2700] Error 2

My CMakeLists.txt is as follows:

cmake_minimum_required(VERSION 3.15.3)
project(2700)

include_directories(/usr/local/opt/curl/include/)

set(CMAKE_CXX_STANDARD 17)

add_executable(2700 main.cpp )

I am using CLion and I am fairly new to C++, especially on MacOS.

What can I do do get the curl working and not get the issue?

like image 525
bjedrzejewski Avatar asked Sep 03 '25 14:09

bjedrzejewski


1 Answers

I have realised that I need to do the linking in CMakeLists.txt:

This works:

cmake_minimum_required(VERSION 3.15.3)
project(2700)

include_directories(/usr/local/opt/curl/include/)

set(CMAKE_CXX_STANDARD 17)

set(CURL_LIBRARY "-lcurl")
find_package(CURL REQUIRED)

add_executable(2700 main.cpp )

include_directories(${CURL_INCLUDE_DIR})
target_link_libraries(2700 ${CURL_LIBRARIES})
like image 78
bjedrzejewski Avatar answered Sep 05 '25 04:09

bjedrzejewski