{"id":4346,"date":"2022-09-28T13:43:08","date_gmt":"2022-09-28T13:43:08","guid":{"rendered":"https:\/\/nenadnoveljic.com\/blog\/?p=4346"},"modified":"2022-09-28T13:43:10","modified_gmt":"2022-09-28T13:43:10","slug":"oci-demo-linking-error","status":"publish","type":"post","link":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/","title":{"rendered":"OCI Demo Linking Error"},"content":{"rendered":"<p>Oracle call interface (OCI) demo programs come with database software installation. For the release 21.7 you can find them in the directory <i>${ORACLE_HOME}\/sdk\/demo\/<\/i>.<\/p>\n<p>Linking is failing:<\/p>\n<pre><code>make -f demo.mk buildoci EXE=cdemo81 OBJS=cdemo81.o\nrm -rf SunWS_cache\n\/usr\/bin\/g++ -o cdemo81 -g cdemo81.o -L..\/..\/ -locci -lclntsh -lpthread\n<span style=\"color:red\">\/usr\/bin\/ld: cannot find -locci\n\/usr\/bin\/ld: cannot find -lclntsh<\/span>\ncollect2: error: ld returned 1 exit status\nmake: *** [demo.mk:81: buildoci] Error 1<\/code><\/pre>\n<p>The error message above tells us that the Oracle client library libclntsh and OCI library libocci couldn&#8217;t be found. The both libraries are contained in the lib directory of the Oracle database software installation:<\/p>\n<pre><code>ls ${ORACLE_HOME}\/lib\/libclntsh.so\n\/u00\/oracle\/orabase\/product\/21.7.0.0.220719_a\/lib\/libclntsh.so\n\nls ${ORACLE_HOME}\/lib\/libocci.so\n\/u00\/oracle\/orabase\/product\/21.7.0.0.220719_a\/lib\/libocci.so<\/code><\/pre>\n<p>LD_LIBRARY_PATH is pointing to the correct directory:<\/p>\n<pre><code>env | grep LD_LIBRARY_PATH\nLD_LIBRARY_PATH=\/u00\/oracle\/orabase\/product\/21.7.0.0.220719_a\/lib<\/code><\/pre>\n<p>But LD_LIBRARY_PATH doesn&#8217;t help here because it is used only during runtime and not during linking.<\/p>\n<p>The library directory path during linking must be specified with the -L option. There&#8217;s an entry in the makefile demo.mk but it is set to ${ORACLE_HOME} instead of ${ORACLE_HOME}\/lib.<\/p>\n<pre><code>ICLIBHOME=..\/..\/\nICLIBPATH=-L$(ICLIBHOME)<\/code><\/pre>\n<p>With the following correction<\/p>\n<pre><code>#ICLIBPATH=-L$(ICLIBHOME)\nICLIBPATH=-L$(ICLIBHOME)\/<span style=\"color:blue\">lib<\/span><\/code><\/pre>\n<p>the demo program links and compiles without problems:<\/p>\n<pre><code>make -f demo.mk buildoci EXE=cdemo81 OBJS=cdemo81.o\nrm -rf SunWS_cache\n\/usr\/bin\/g++ -o cdemo81 -g cdemo81.o -L..\/..\/\/lib -locci -lclntsh -lpthread\n\nls cdemo81\ncdemo81<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>An error in the make file with an easy fix. <a href=\"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/\" class=\"more-link\">Continue Reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[58,5],"tags":[],"class_list":["post-4346","post","type-post","status-publish","format-standard","hentry","category-linker","category-oracle"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>OCI Demo Linking Error - All-round Database Topics<\/title>\n<meta name=\"description\" content=\"An error in the make file with an easy fix.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"OCI Demo Linking Error - All-round Database Topics\" \/>\n<meta property=\"og:description\" content=\"An error in the make file with an easy fix.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/\" \/>\n<meta property=\"og:site_name\" content=\"All-round Database Topics\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-28T13:43:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-28T13:43:10+00:00\" \/>\n<meta name=\"author\" content=\"Nenad Noveljic\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@NenadNoveljic\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nenad Noveljic\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/\"},\"author\":{\"name\":\"Nenad Noveljic\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\"},\"headline\":\"OCI Demo Linking Error\",\"datePublished\":\"2022-09-28T13:43:08+00:00\",\"dateModified\":\"2022-09-28T13:43:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/\"},\"wordCount\":141,\"commentCount\":0,\"articleSection\":[\"linker\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/\",\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/\",\"name\":\"OCI Demo Linking Error - All-round Database Topics\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#website\"},\"datePublished\":\"2022-09-28T13:43:08+00:00\",\"dateModified\":\"2022-09-28T13:43:10+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\"},\"description\":\"An error in the make file with an easy fix.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/oci-demo-linking-error\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"OCI Demo Linking Error\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/\",\"name\":\"All-round Database Topics\",\"description\":\"Nenad Noveljic\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\",\"name\":\"Nenad Noveljic\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"caption\":\"Nenad Noveljic\"},\"sameAs\":[\"nenad-noveljic-9b746a6\",\"https:\\\/\\\/x.com\\\/NenadNoveljic\"],\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/author\\\/nenad\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"OCI Demo Linking Error - All-round Database Topics","description":"An error in the make file with an easy fix.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/","og_locale":"en_US","og_type":"article","og_title":"OCI Demo Linking Error - All-round Database Topics","og_description":"An error in the make file with an easy fix.","og_url":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/","og_site_name":"All-round Database Topics","article_published_time":"2022-09-28T13:43:08+00:00","article_modified_time":"2022-09-28T13:43:10+00:00","author":"Nenad Noveljic","twitter_card":"summary_large_image","twitter_creator":"@NenadNoveljic","twitter_misc":{"Written by":"Nenad Noveljic","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/#article","isPartOf":{"@id":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/"},"author":{"name":"Nenad Noveljic","@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa"},"headline":"OCI Demo Linking Error","datePublished":"2022-09-28T13:43:08+00:00","dateModified":"2022-09-28T13:43:10+00:00","mainEntityOfPage":{"@id":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/"},"wordCount":141,"commentCount":0,"articleSection":["linker","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/","url":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/","name":"OCI Demo Linking Error - All-round Database Topics","isPartOf":{"@id":"https:\/\/nenadnoveljic.com\/blog\/#website"},"datePublished":"2022-09-28T13:43:08+00:00","dateModified":"2022-09-28T13:43:10+00:00","author":{"@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa"},"description":"An error in the make file with an easy fix.","breadcrumb":{"@id":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nenadnoveljic.com\/blog\/oci-demo-linking-error\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nenadnoveljic.com\/blog\/"},{"@type":"ListItem","position":2,"name":"OCI Demo Linking Error"}]},{"@type":"WebSite","@id":"https:\/\/nenadnoveljic.com\/blog\/#website","url":"https:\/\/nenadnoveljic.com\/blog\/","name":"All-round Database Topics","description":"Nenad Noveljic","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nenadnoveljic.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa","name":"Nenad Noveljic","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","caption":"Nenad Noveljic"},"sameAs":["nenad-noveljic-9b746a6","https:\/\/x.com\/NenadNoveljic"],"url":"https:\/\/nenadnoveljic.com\/blog\/author\/nenad\/"}]}},"_links":{"self":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/4346","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/comments?post=4346"}],"version-history":[{"count":1,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/4346\/revisions"}],"predecessor-version":[{"id":4348,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/4346\/revisions\/4348"}],"wp:attachment":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/media?parent=4346"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/categories?post=4346"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/tags?post=4346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}