当前位置: 技术问答>linux和unix
紧急求助/usr/bin/ld: cannot find -lg++
来源: 互联网 发布时间:2016-11-21
本文导语: makefile里是这么写的: CFLAGS = -c -O -D_random_h_ # ignore declarations in random.h CC = gcc GLIB = -lg++ SOLLIB = PURE = 我在make all的时候老是出现这个错误,网上也找不到解决办法 /usr/bin/ld: cannot find -lg++ collect2: ld return...
makefile里是这么写的:
CFLAGS = -c -O -D_random_h_ # ignore declarations in random.h
CC = gcc
GLIB = -lg++
SOLLIB =
PURE =
我在make all的时候老是出现这个错误,网上也找不到解决办法
/usr/bin/ld: cannot find -lg++
collect2: ld returned 1 exit status
本人用的是操作系统版本:Linux ubuntu 2.6.35-28-generic
CFLAGS = -c -O -D_random_h_ # ignore declarations in random.h
CC = gcc
GLIB = -lg++
SOLLIB =
PURE =
我在make all的时候老是出现这个错误,网上也找不到解决办法
/usr/bin/ld: cannot find -lg++
collect2: ld returned 1 exit status
本人用的是操作系统版本:Linux ubuntu 2.6.35-28-generic
|
这样呢?
CC = g++
GLIB =
CC = g++
GLIB =
|
需要指定libg++的位置 -L/libg++/的/路径