如何在ubuntu下的gcc 来编译object-C的相关文章推荐
1个回答
展开全部
安装完毕後,便可以透过make来编译
###############################################################################
如果出现下面错误,则表示找不到NextSetup的相关liberary,必须要修正script shell为下
gcc `gnustep-config --objc-flags` -lgnustep-base hello.m -o hello
或是使用Automake的话,必须要再Makefile.am修改为
Java代码
AUTOMAKE_OPTIONS=foreign
bin_PROGRAMS=demo0
demo0_SOURCES= hello.m
INCLUDES= -I/usr/local/include/GNUstep \
-I/usr/include/GNUstep
demo0_LDADD = -lgnustep-base -lpthread -lobjc -lm
error: cannot find interface declaration for ‘NXConstantString’
###############################################################################
如果出现以下错误,表示你的gcc尚不支援cc1obj,必须要安装gobjc
gcc: error trying to exec 'cc1obj': execvp: No such file or directory
>>sudo apt-get install gobjc
###############################################################################
如果出现下面错误,则表示找不到NextSetup的相关liberary,必须要修正script shell为下
gcc `gnustep-config --objc-flags` -lgnustep-base hello.m -o hello
或是使用Automake的话,必须要再Makefile.am修改为
Java代码
AUTOMAKE_OPTIONS=foreign
bin_PROGRAMS=demo0
demo0_SOURCES= hello.m
INCLUDES= -I/usr/local/include/GNUstep \
-I/usr/include/GNUstep
demo0_LDADD = -lgnustep-base -lpthread -lobjc -lm
error: cannot find interface declaration for ‘NXConstantString’
###############################################################################
如果出现以下错误,表示你的gcc尚不支援cc1obj,必须要安装gobjc
gcc: error trying to exec 'cc1obj': execvp: No such file or directory
>>sudo apt-get install gobjc
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询