• How to call the GCC compiler from a Ruby on Rails Web Application?

    如何铁轨Web应用红宝石调用GCC编译器

    youdao

  • For Mac OS X users, though, the GCC compiler doesn't get installed by default.

    对于MacOSX用户gcc编译器默认情况下不会安装

    youdao

  • The GCC compiler works well only with one single included precompiler header, as explained in this answer.

    GCC编译适用于使用包含编译标题,如此答复述。

    youdao

  • The gcc compiler option -Wformat-security will warn you of some cases where the code may be vulnerable to format string attacks.

    gcc编译器选项-Wformat-security 可以警告代码中可能受到格式化字符串攻击地方

    youdao

  • In order to enable the 64-bit GCC compiler in SLES8, developers should ensure that their configure scripts and Makefiles are aware of this compiler.

    为了SLES8可以使用64编译器,开发者应该确保他们配置脚本Makefile文件可以识别出这个编译器。

    youdao

  • The GCC compiler suite is sufficiently widely available that most projects can reasonably assume that it will be an option on a broad variety of target platforms.

    gcc编译器套件已被广为应用,大部分项目完全可以假定很多目标平台的一个选项

    youdao

  • Note: The -ggdb option in Listing 2 differs from Nigel's article in that it tells the GCC compiler to optimize the program for debugging with the GDB Debugger, which you'll use later.

    注意清单2 中的 -ggdb选项Nigel文章中的内容有些不同选项用于告诉GCC编译器程序进行优化以便使用 GDB调试工具对进行调试,以后用到该调试工具。

    youdao

  • Unsurprisingly, neither compiler does nearly as well as the hand-coded assembly language version from the previous article, but for this program XLC outperformed GCC.

    毫不奇怪没有哪种编译器可以接近篇文章中手工编写汇编语言版本不过对于这个程序来说,XLC的效果比GCC更好。

    youdao

  • Unlike GCC, which is a monolithic compiler released under the GPL, the LLVM family of tools are more modular - and thanks to a more permissive BSD license, can be embedded in commercial tools.

    基于GPL授权单一编译器GCC不同LLVM工具更为模块化而且得益于更为宽松BSD授权,LLVM可以嵌入商业工具中。

    youdao

  • This article explores the fundamental changes in GCC version 4 to show you why-if you haven't switched yet-the time has come to use the compiler standard.

    本文探索GCC第4中的重要变化展示为什么—如果使用GCC的话—现在应该使用这个编译器标准

    youdao

  • If you're not using GCC as your compiler, you may need to change these.

    如果不是在用gcc作为编译器或许做一些改动

    youdao

  • The problem with using GCC was that for every target OS or architecture we would need a separate cross compiler.

    gcc存在问题一个目标OS或是系统架构我们需要一个单独交叉编译器

    youdao

  • One way around this is to use the Cygwin compatibility layer and a Perl built against that, in which case the compiler will be GCC.

    如果编译器gcc的话,种解决方法使用Cygwin兼容解决这个问题而构建Perl版本

    youdao

  • GCC 4 brings many changes to the standard compiler suite, the biggest of which is around support for optimizations with the introduction of the tree Static Single Assignment (SSA) form.

    GCC4标准编译器套件带来了很多变化最大变化为了支持优化引入StaticSingleAssignment (ssa)形式。

    youdao

  • Porting an application program includes using the Linux standard compiler GCC and some associated tools.

    移植应用程序涉及使用Linux标准编译器GCC其他一些相关工具

    youdao

  • However, if you assume a specific compiler and a specific system, it may be doable, and fortunately, with GCC on Linux, it is.

    不过如果假定特定编译器一个特定系统那么可能可以这样做幸运的是,对于LinuxGCC,恰好是这种情况。

    youdao

  • For instance, GCC on UnixWare didn't trigger the above bug; only the compiler that came with the system's native development package did.

    例如UnixWaregcc不会发生前面bug只是使用系统本身开发包进行编译才会发生。

    youdao

  • IOS, the operating system used by the iPhone, is built upon a UNIX core and applications for iOS are compiled using GCC, the same compiler used by the majority of UNIX systems.

    iPhone使用操作系统iOSUNIX核心之上构建,iOS应用程序使用GCC编译的,而GCC也是大多数UNIX系统使用的编译器。

    youdao

  • You should also have a C compiler, such as the GNU Compiler Collection (GCC), and a suite of development tools that includes make and m4.

    同时,还需要C编译器,例如GNUCompilerCollection (GCC),包含makem4开发工具

    youdao

  • Check whether the development tools needed under Linux are available on your current platform (the compiler collection GCC and GNU make, to name the most important ones).

    检查Linux环境需要开发工具是否当前平台能用(GCCGNU提供的编译器集合列出重要的开发工具)。

    youdao

  • Now, you might in some context have to add the right kind of parentheses so that GCC or your compiler doesn't get confused, but really they just reverse each other's processes.

    现在可能要相应的地方,加入一些圆括号这样GCC编译器就不会误解你的意思,但是它们颠倒了相互过程

    youdao

  • And if you don't include it, GCC, the compiler will yell at you.

    如果没有include这个库函数,GCC的时候,编译就会报错

    youdao

  • On x86-based Linux platforms, GCC is used as the compiler.

    基于x86Linux平台上可以使用gcc作为编译器。

    youdao

  • The compiler that programmers normally use is GCC.

    程序员通常所使用编译gcc

    youdao

  • The first thing to do was just to put the compiler and linker in 64-bit mode; the gcc manual covers this.

    我们第一件事情编译器链接器换成 64模式gcc手册会介绍这个问题。

    youdao

  • My own preference is to have GCC always mean the native compiler, and I explicitly invoke or configure mingw32-gcc as I need.

    自己的首选gcc总是意味着本机编译器按需式调用配置mingw32 - gcc

    youdao

  • The makefile USES spu-gcc, an SDK compiler, to build the SPE downloadable code, which is provided in Listing 2.

    makefile使用spu - gcc(一个SDK编译器)构建SPE可下载代码清单2。

    youdao

  • Note: the -ggdb option in this example differs from Nigel's article in that it tells the GNU Compiler Collection (GCC) to optimize the program for debugging with GDB.

    注意此示例中的- ggdb选项Nigel文章所述的选项不同,因为告诉gnu编译器(GCC)优化程序,以便于使用gdb来进行调试

    youdao

  • The compiler most people use is GCC, which can be a little daunting to set up (particularly as a cross-compiler) if you have never done this before.

    大部分使用编译gcc如果以前从来没有这样设置过,设置起来可能令人望而生畏(尤其是将其设置一个交叉编译器)。

    youdao

  • I have worked with a modified version of GNU Compiler Collection (GCC) that included a call out to a license manager.

    曾经使用GNUCompilerCollection (GCC)修订版内含了一个许可管理器的调用

    youdao

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定