当前位置:  技术问答>linux和unix

请问Linux下如何编译C程序啊???在线等

    来源: 互联网  发布时间:2015-08-13

    本文导语:  我想要最详细的答案,谢谢! | gcc -o desfilename srcfilename.c | gcc -o 输出文件名 源文件.c 这不是生成目标文件,而是直接生成可执行文件 要生成目标文件应加-c选项。 ...

我想要最详细的答案,谢谢!

|
gcc -o desfilename srcfilename.c

|
gcc -o 输出文件名 源文件.c
这不是生成目标文件,而是直接生成可执行文件
要生成目标文件应加-c选项。

|
同楼上
输出文件可以用
./filename
来执行

|
man gcc

这样就可以得到gcc的详细信息了

gcc是linux的c/c++编译器

|
这里是man gcc的一部分信息,

自己看一下印象深一些

]# man gcc
GCC(1)                                GNU                               GCC(1)

NAME
       gcc - GNU project C and C++ compiler

SYNOPSIS
       gcc [-c|-S|-E] [-std=standard]
           [-g] [-pg] [-Olevel]
           [-Wwarn...] [-pedantic]
           [-Idir...] [-Ldir...]
           [-Dmacro[=defn]...] [-Umacro]
           [-foption...] [-mmachine-option...]
           [-o outfile] infile...

       Only the most useful options are listed here; see below for the remain-
       der.  g++ accepts mostly the same options as gcc.

DESCRIPTION
       When you invoke GCC, it normally does preprocessing, compilation,
       assembly and linking.  The ``overall options'' allow you to stop this
       process at an intermediate stage.  For example, the -c option says not
       to run the linker.  Then the output consists of object files output by
       the assembler.

       Other options are passed on to one stage of processing.  Some options
       control the preprocessor and others the compiler itself.  Yet other
       options control the assembler and linker; most of these are not docu-
       mented here, since you rarely need to use any of them.

       Most of the command line options that you can use with GCC are useful
       for C programs; when an option is only useful with another language
       (usually C++), the explanation says so explicitly.  If the description
       for a particular option does not mention a source language, you can use
       that option with all supported languages.

       The gcc program accepts options and file names as operands.  Many
       options have multi-letter names; therefore multiple single-letter
       options may not be grouped: -dr is very different from -d -r.

       You can mix options and other arguments.  For the most part, the order
       you use doesn't matter.  Order does matter when you use several options
       of the same kind; for example, if you specify -L more than once, the
       directories are searched in the order specified.

       Many options have long names starting with -f or with -W---for example,
       -fforce-mem, -fstrength-reduce, -Wformat and so on.  Most of these have
       both positive and negative forms; the negative form of -ffoo would be
       -fno-foo.  This manual documents only one of these two forms, whichever
       one is not the default.

OPTIONS
       Option Summary

       Many options have long names starting with -f or with -W---for example,
       -fforce-mem, -fstrength-reduce, -Wformat and so on.  Most of these have
       both positive and negative forms; the negative form of -ffoo would be
       -fno-foo.  This manual documents only one of these two forms, whichever
       one is not the default.

OPTIONS
       Option Summary

       Here is a summary of all the options, grouped by type.  Explanations
       are in the following sections.

       Overall Options
           -c  -S  -E  -o file  -pipe  -pass-exit-codes  -x language -v  -###
           --help  --target-help  --version

       C Language Options
           -ansi  -std=standard  -aux-info filename -fno-asm  -fno-builtin
           -fno-builtin-function -fhosted  -ffreestanding -trigraphs
           -no-integrated-cpp  -traditional  -traditional-cpp -fallow-sin-
           gle-precision  -fcond-mismatch -fsigned-bitfields  -fsigned-char
           -funsigned-bitfields  -funsigned-char -fwritable-strings

       C++ Language Options
           -fno-access-control  -fcheck-new  -fconserve-space
           -fno-const-strings  -fdollars-in-identifiers -fno-elide-construc-
           tors -fno-enforce-eh-specs  -fexternal-templates -falt-exter-
           nal-templates -ffor-scope  -fno-for-scope  -fno-gnu-keywords
           -fno-implicit-templates -fno-implicit-inline-templates -fno-imple-
           ment-inlines  -fms-extensions -fno-nonansi-builtins  -fno-opera-
           tor-names -fno-optional-diags  -fpermissive -frepo  -fno-rtti
           -fstats  -ftemplate-depth-n -fuse-cxa-atexit  -fvtable-gc
           -fno-weak  -nostdinc++ -fno-default-inline -Wabi -Wctor-dtor-pri-
           vacy -Wnon-virtual-dtor  -Wreorder -Weffc++  -Wno-deprecated
           -Wno-non-template-friend  -Wold-style-cast -Woverloaded-virtual

    
 
 

您可能感兴趣的文章:

  • JB下,我的程序编译得好慢!请问用什么方法编译才可以快一点?或编译顺序改变一下?
  • 请问哪里有反编译.class文件的反编译器?
  • 用JCreator写了一个小程序,有十几个class,当修改某个文件重新编译,javac并没有编译修改的文件,请问要如何做javac才会重新编译所有的
  • 请问:我要链接哪些oci库才能成功编译.我在编译的时候老是报OCI函数找不到.
  • jbuilder运行时会编译整个工程的文件,请问大家如何改成只编译当前文件。
  • 请问在linux下编译程序怎么设置编译器字节对齐?
  • 请问gdb是不是只能调试gcc编译的程序,在unix下用其它编译器编译的程序是不是不一定能用gdb调试的?
  • 下载As86的一个压缩包,解开后没有rpm看样子的自己编译,请问如何编译。
  • 请问:在proc程序中,若里面有模板的类型,能不能通过预编译啊,(编译时老是无法识别类型,我的头文件都已包含了)
  • 请问哪个JAVA反编译软件可以反编译加密过的CLASS???
  • ??请问在windows下怎样配置sh的configure文件 许多开放源码项目在编译前都要配置configure才能编译. 可...
  • 请问用javac编译一般*.java能通过,但不能编译Servlet写的*.java.提示javax.servlet.http不存在。
  • 菜鸟问题: redhat linux 编译一个最简单的c程序, 其中包含了<studio.h>头文件,但在gcc编译时,提示找不到studio.h文件,请问各位大大
  • 请问一个关于gcc编译的问题
  • 请问Linux下,有图形界面的编译器吗?
  • 请问编译器是干什么用的
  • 请问如何编译EJB的源文件?
  • 请问怎么重新编译后里面的文件还存在呢?
  • 请问学编译原理的用途?
  • 请问高手:sun下如何编译informix的C++,也就是嵌套sql的c++,急呀
  • 为什么linux下的C++程序这么少见? 请问那里有linux下的C++程序?什么类型的程序都可以.
  • 请问linux下查看某个程序的运行界面的程序是什么?
  • 急!请问有分析java程序性能瓶颈的工具吗?例如,统计 java 程序中函数调用次数?
  • 请问如何设置驱动程序和应用程序的启动顺序和优先级呢?
  • 请问载linux下如何调试汇编程序,有没有像debug的程序。
  • 请问如何在一个java程序中加载 C或c++程序??
  • 请问大家,gnome下的程序与KDE下的程序有何区别?
  • 请问shell 开发能开发什么样的程序?硬件的驱动程序是否能够开发呢?
  • 请问怎么在C程序中得到该可执行程序的文件名???
  • 请问能否在linux实现一个应用程序访问另外一个程序的内存数据?
  • 请问:哪种工具可以制作安装程序,安装程序是基于java的或是能在aix运行?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问:我知道路由器的telnet密码,但忘记了enable 密码,请问如何是好?
  • 请问那里有SYBASE的jbdb 2.0下载;jspsmartupload可以直接将文件上传到数据库,请问如何使用
  • 请问最新的reahat9.0是基于什么核心的?2.4?2.6?请问那里能下载?
  • 请问:请问哪里有关于linux基本操作命令讲解的资料下载,最好是幻灯片格式的.
  • 请问,我试图用#admintool&图形工具命令来安装sun workshop5.0,为什么进入的却是用户管理界面?请问具体该如何在solaris下安装应用软件
  • 请问在Redhat 9里,我从登录就是图形介面,请问如何在图形介面内进入命令行方式呢,谢谢
  • 请问玩过SOLARIS的高手门,在不正常关机后,就不能启动到windows公用桌面了,只能在命令提示模式下了,请问怎么解决这个问题啊?急~!~!
  • 请问:我在redhat下装了bochs-2.2.1-1.rpm,.装了后,想设置一下,但找不到bochsrc.fda.bxrc,请问这个文件在哪个曰录下啊。
  • 请问:在配置Qt时,很多文档都说在.profile,.login里加东西,但是我好像没有发现有这两个文件上,请问这些文件在哪个目录下啊
  • 请问:在GCC里的C程序里的变量的声明是不是只能在前面,而且相同类型的变量的声明只能放在一起?如果不是,请问怎么样可以解决这个问题.
  • 请问各位大虾,小弟今天开始学jsp了,这学期我们有java课,所以已经下载了jdk(好象是1.2),请问我的98环境怎么配置jsp环境呀?我的jdk可以运行.java程序,别的我就不知道了....谢谢!
  • JB下,我的程序编译得好慢!请问用什么方法编译才可以快一点?或编译顺序改变一下? iis7站长之家
  • 请问linux下GUI开发的问题!
  • 请问出现fstab文件丢失该怎么修复呀?
  • 请问这个方法如何调用?
  • 请问一个奇怪的问题!
  • 请问在网页中打开的新窗口,如何让其居中。
  • 请问我该学什么了
  • 请问安装zhcon,cxterm问题
  • 非常急! 请问daemontools 在red hat 9下的安装问题? 在线等待


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3