Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mecab-config(1) [debian man page]

MECAB-CONFIG(1) 					      General Commands Manual						   MECAB-CONFIG(1)

NAME
mecab-config - Get command-line flags for building stuff using Mecab SYNOPSIS
mecab-config [OPTION] ... DESCRIPTION
mecab-config gives information about how Mecab is configured on your system, giving necessary command line options to build your applica- tions. Known values for OPTION are: --cxx print C++ compiler used to compile Mecab --prefix print Mecab prefix --exec-prefix print Mecab executable prefix --libs print library linking information --cflags print preprocessor flags, I_opts, and compiler options --dicdir print path to directory containing dictionaries --libexecdir print path to directory containing helper executables --libs-only-L print linker "-L" flags for dynamic linking --libs-only-l print dynamic linker "-l" flags --inc-dir print "-I" include options --help print this help and exit --version print version information SEE ALSO
mecab(1). AUTHOR
This manual page was written by TSUCHIYA Masatoshi <tsuchiya@namazu.org>, for the Debian project (but may be used by others). Aug 15th, 2003 MECAB-CONFIG(1)

Check Out this Related Man Page

APR-1-CONFIG(1) 						   User Commands						   APR-1-CONFIG(1)

NAME
apr-1-config - Return metainformation about apr library SYNOPSIS
apr-1-config [OPTION] DESCRIPTION
The apr-1-config program is used to retrieve information about the apr library in the system. It is typically used to compile and link against the library. When linking with libtool, an application should do something like: APR_LIBS="`apr-1-config --link-libtool --libs`" or when linking directly: APR_LIBS="`apr-1-config --link-ld --libs`" An application should use the results of --cflags, --cppflags, --includes, and --ldflags in their build process. OPTIONS
Known values for OPTION are: --prefix[=DIR] change prefix to DIR --bindir print location where binaries are installed --includedir print location where headers are installed --cc print C compiler name --cpp print C preprocessor name and any required options --cflags print C compiler flags --cppflags print C preprocessor flags --includes print include information --ldflags print linker flags --libs print additional libraries to link against --srcdir print APR source directory --installbuilddir print APR build helper directory --link-ld print link switch(es) for linking to APR --link-libtool print the libtool inputs for linking to APR --shlib-path-var print the name of the shared library path env var --apr-la-file print the path to the .la file, if available --apr-so-ext print the extensions of shared objects on this platform --apr-lib-target print the libtool target information --apr-libtool print the path to APR's libtool --version print the APR's version as a dotted triple --help print the help AUTHOR
This manual page was written by Vincent Danjean <Vincent.Danjean@ens-lyon.org> for the Debian project (but may be used by others). apr-1-config 1.2.2 March 2006 APR-1-CONFIG(1)
Man Page

14 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

cannot print from an application but, i can print from others?

I am trying to print from an application but it will not let me and when I click on the print option a 2nd time it crashes the program. I can print fine from the other applications on my system though, any ideas? (1 Reply)
Discussion started by: 75ping6
1 Replies

2. Shell Programming and Scripting

print 1 to 10

How to print 1 to 10 by using awk and without using "print" or "printf" command? Thanks. (1 Reply)
Discussion started by: angloi
1 Replies

3. UNIX for Dummies Questions & Answers

awk print line

Hi All, I know that i can print the lines from awk just using the print method, but i need to print stuff before it i.e: BEGIN { i=0 } { i++ print i ")" print } END { } Here the output is: (7 Replies)
Discussion started by: Chiefos
7 Replies

4. UNIX for Dummies Questions & Answers

array help

Hi, I have stored some value in araay a=1 a=2 i want to print that values......... can anybody know command to print values of array thanks mahabunta (1 Reply)
Discussion started by: mahabunta
1 Replies

5. UNIX for Dummies Questions & Answers

how to print 35th line from a file ?

Hi All, I am a newbie.I hope I will learn lot here. Thanks for buliding such a resourceful forum. My question : I want to print just the 35th line in a file , how can I do it , any smallest possible script please? (9 Replies)
Discussion started by: gridview
9 Replies

6. Programming

C files searching and Linking

Dear friends, First off all , let me apologize for my inexperience. I am just starting use of Linux and gcc . Actually I ve some .c files in the present directory , and now I am giving +vc <my_file1.c> <my.file2.c> <myfile3.c>. All the c files are in present directory.... (2 Replies)
Discussion started by: user_prady
2 Replies

7. Programming

I can print ""

I'm trying to print an xml header to a file and I don't know how the last thing I tried is this: system("echo '<?xml version='\"1.0\"' encoding='\"UTF-8\"'?>'" > a.xml) "" are not printed The code is written in C/C++ (4 Replies)
Discussion started by: ncatdesigner
4 Replies

8. Solaris

difference between RPATH and normal linking while building

while building in solaris and going for dynamic linking whats the difference or advantage or disadvantage in using RPATH vs while linking package and dependency libraries i need a little explanation about this RPATH option specially and the difference with normal linking using -L (0 Replies)
Discussion started by: mobydick
0 Replies

9. Shell Programming and Scripting

print ($6, $5)

Hi All, I'm using the print command to print 2 values from a single line in a file. The command used is, print {$6, $5) & this is printing the output on two separate lines. I need $6 & $5 printed on the same line. Thanks for your help in advance. Regards Ashok (1 Reply)
Discussion started by: ashyala
1 Replies

10. Shell Programming and Scripting

how to print field n of line m

Hi everyone, I have a basic csh/awk question. How do I print a given field from a given line in a given file? Thanks in advance! (11 Replies)
Discussion started by: Deanne
11 Replies

11. Shell Programming and Scripting

print decimal values

Hi guys I'm trying to print average of 2 columns. awk '{print ($1+$2)/2}' file.txt Its printing average but not giving decimal values its giving 3.05521e+08 instead of 305521.... I tried %f to print float values but not quiet connected Could you help plz:confused: (5 Replies)
Discussion started by: repinementer
5 Replies

12. Shell Programming and Scripting

move to a particular line

Hi, I need to create a report in unix by moving to specified lines and specified positions and print some strings etc.. for eg: i need to print a string on 15th line and 7th position of a file. Please suggest. Thanks, Mohan (3 Replies)
Discussion started by: mohanpadamata
3 Replies

13. Programming

Linker errors linking to .a files on OS X

Basically my problem is that when I try to compile anything using ./configure && make, it fails because of linker errors. I can reproduce the behavior I'm getting as follows: I have the two following files main.c: #include <stdio.h> extern void func(void); int main(int argc, char... (5 Replies)
Discussion started by: MarshallBanana
5 Replies

14. UNIX for Beginners Questions & Answers

Read line and print output

need help to print the below .. Content of file looks like below .. SCHEMA1. TABLE1 SCHEMA2. TABLE2 SCHEMA3. TABLE3 read lines from above file and print o/p as below print output like read 1st line and print SELECT SCHEMA1.TABLE1 print output like read 2st line and print ... (4 Replies)
Discussion started by: rocking77
4 Replies