- 论坛徽章:
- 1
|
本帖最后由 石下醉客 于 2014-12-24 17:59 编辑
有三个文件,使用了大数库GMP
test.h- #include <gmp.h>
- #include <stdio.h>
- void print_msg(mpz_t message);
复制代码 test.c- #include "test.h"
- #include <stdio.h>
- void print_msg(mpz_t message)
- {
- mpz_out_str(stderr, 10, message);
- fputs("\n", stderr);
- }
复制代码 main.cpp- #include "test.h"
- #include <stdio.h>
- int main()
- {
- mpz_t message;
- mpz_init(message);
- mpz_set_ui(message, 100)
- print_msg(message);
- return 0;
- }
复制代码 Makefile- CC = g++
- CFLAGS = -Wall -I/usr/local/include/
- LDFLAGS = -lgmp
- all: main
- test.o: test.c
- $(CC) -c -g -o $@ $^ $(CFLAGS)
- main.o: main.cpp
- $(CC) -c -g -o $@ $^ $(CFLAGS)
- main: test.o main.o
- $(CC) -o $@ $^ $(LDFLAGS)
- clean:
- rm -f *.o test main
复制代码 在C++中调用C文件。这样会出现链接失败,也就是"unreference to print_msg”,于是把main.cpp改成- extern "C"
- {
- #include "test.h"
- }
- #include <stdio.h>
- int main()
- {
- mpz_t message;
- mpz_init(message);
- mpz_set_ui(message, 100L);
- print_msg(message);
- return 0;
- }
复制代码 但是编译会出现如下错误
g++ -c -g -o test.o test.c -Wall -I/usr/local/include/
g++ -c -g -o main.o main.cpp -Wall -I/usr/local/include/
In file included from /usr/include/c++/4.8/bits/stringfwd.h:40:0,
from /usr/include/c++/4.8/iosfwd:39,
from /usr/local/include/gmp.h:34,
from test.h:1,
from main.cpp:3:
/usr/include/c++/4.8/bits/memoryfwd.h:63:3: error: template with C linkage
template<typename>
^
/usr/include/c++/4.8/bits/memoryfwd.h:66:3: error: template specialization with C linkage
template<>
^
/usr/include/c++/4.8/bits/memoryfwd.h:70:3: error: template with C linkage
template<typename, typename>
^
In file included from /usr/include/c++/4.8/iosfwd:39:0,
from /usr/local/include/gmp.h:34,
from test.h:1,
from main.cpp:3:
/usr/include/c++/4.8/bits/stringfwd.h:52:3: error: template with C linkage
template<class _CharT>
^
/usr/include/c++/4.8/bits/stringfwd.h:55:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT>,
^
/usr/include/c++/4.8/bits/stringfwd.h:59:3: error: template specialization with C linkage
template<> struct char_traits<char>;
^
/usr/include/c++/4.8/bits/stringfwd.h:65:3: error: template specialization with C linkage
template<> struct char_traits<wchar_t>;
^
In file included from /usr/include/c++/4.8/iosfwd:40:0,
from /usr/local/include/gmp.h:34,
from test.h:1,
from main.cpp:3:
/usr/include/c++/4.8/bits/postypes.h:111:3: error: template with C linkage
template<typename _StateT>
^
/usr/include/c++/4.8/bits/postypes.h:214:3: error: template with C linkage
template<typename _StateT>
^
/usr/include/c++/4.8/bits/postypes.h:219:3: error: template with C linkage
template<typename _StateT>
^
In file included from /usr/local/include/gmp.h:34:0,
from test.h:1,
from main.cpp:3:
/usr/include/c++/4.8/iosfwd:76:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:79:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:82:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:85:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:88:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:91:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT>,
^
/usr/include/c++/4.8/iosfwd:95:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT>,
^
/usr/include/c++/4.8/iosfwd:99:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT>,
^
/usr/include/c++/4.8/iosfwd:103:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT>,
^
/usr/include/c++/4.8/iosfwd:107:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:110:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:113:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:116:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:119:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
/usr/include/c++/4.8/iosfwd:122:3: error: template with C linkage
template<typename _CharT, typename _Traits = char_traits<_CharT> >
^
In file included from test.h:1:0,
from main.cpp:3:
/usr/local/include/gmp.h:2251:71: error: declaration of C function ‘std: stream& operator<<(std: stream&, mpq_srcptr)’ conflicts with
__GMP_DECLSPEC_XX std: stream& operator<< (std: stream &, mpq_srcptr);
^
/usr/local/include/gmp.h:2250:33: error: previous declaration ‘std: stream& operator<<(std: stream&, mpz_srcptr)’ here
__GMP_DECLSPEC_XX std: stream& operator<< (std: stream &, mpz_srcptr);
^
/usr/local/include/gmp.h:2252:71: error: declaration of C function ‘std: stream& operator<<(std: stream&, mpf_srcptr)’ conflicts with
__GMP_DECLSPEC_XX std::ostream& operator<< (std::ostream &, mpf_srcptr);
^
/usr/local/include/gmp.h:2251:33: error: previous declaration ‘std::ostream& operator<<(std::ostream&, mpq_srcptr)’ here
__GMP_DECLSPEC_XX std::ostream& operator<< (std::ostream &, mpq_srcptr);
^
/usr/local/include/gmp.h:2252:71: error: declaration of C function ‘std::ostream& operator<<(std::ostream&, mpf_srcptr)’ conflicts with
__GMP_DECLSPEC_XX std::ostream& operator<< (std::ostream &, mpf_srcptr);
^
/usr/local/include/gmp.h:2250:33: error: previous declaration ‘std::ostream& operator<<(std::ostream&, mpz_srcptr)’ here
__GMP_DECLSPEC_XX std::ostream& operator<< (std::ostream &, mpz_srcptr);
^
/usr/local/include/gmp.h:2254:68: error: declaration of C function ‘std::istream& operator>>(std::istream&, mpq_ptr)’ conflicts with
__GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpq_ptr);
^
/usr/local/include/gmp.h:2253:33: error: previous declaration ‘std::istream& operator>>(std::istream&, mpz_ptr)’ here
__GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpz_ptr);
^
/usr/local/include/gmp.h:2255:68: error: declaration of C function ‘std::istream& operator>>(std::istream&, mpf_ptr)’ conflicts with
__GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpf_ptr);
^
/usr/local/include/gmp.h:2254:33: error: previous declaration ‘std::istream& operator>>(std::istream&, mpq_ptr)’ here
__GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpq_ptr);
^
/usr/local/include/gmp.h:2255:68: error: declaration of C function ‘std::istream& operator>>(std::istream&, mpf_ptr)’ conflicts with
__GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpf_ptr);
^
/usr/local/include/gmp.h:2253:33: error: previous declaration ‘std::istream& operator>>(std::istream&, mpz_ptr)’ here
__GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpz_ptr);
^
make: *** [main.o] 错误 1
|
|