pkgconfig {Rhdf5lib}R Documentation

Compiler arguments for using Rhdf5lib

Description

This function returns values for PKG_LIBS variables for use in Makevars files.

Usage

pkgconfig(
  opt = c("PKG_CXX_LIBS", "PKG_C_LIBS", "PKG_CXX_HL_LIBS", "PKG_C_HL_LIBS")
)

Arguments

opt

A scalar character from the list of available options; default is PKG_CXX_LIBS. Valid options are PKG_C_LIBS, PKG_CXX_LIBS, PKG_C_HL_LIBS and PKG_CXX_HL_LIBS, where HL indicates that you want to include the HDF5 'high-level' API and CXX denotes including the C++ interface.

Value

NULL; prints the corresponding value to stdout.

Examples

pkgconfig("PKG_C_LIBS")
pkgconfig("PKG_CXX_LIBS")
pkgconfig("PKG_C_HL_LIBS")
pkgconfig("PKG_CXX_HL_LIBS")

[Package Rhdf5lib version 1.14.2 Index]