小窓モード


プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > コンピューター用語 > 拡張コンパイラの英語・英訳 

拡張コンパイラの英語

ピン留め

追加できません

(登録数上限)

単語を追加

コンピューター用語辞典での「拡張コンパイラ」の英訳

拡張コンパイラ

読み方 カクチョウコンパイラ

extended compiler


「拡張コンパイラ」の部分一致の例文検索結果

該当件数 : 15



例文

拡張可能なコンパイラおよびツールのインフラストラクチャのための記述言語例文帳に追加

DESCRIPTION LANGUAGE FOR EXTENSIBLE COMPILER AND TOOLS INFRASTRUCTURE - 特許庁

ファイル名には拡張子をつけてはならず、コンパイラで使われているデフォルトの拡張子が使われます。例文帳に追加

These files must not have extensions, as the default extension for the compiler is used. - Python

この情報には、選択されたコンパイラコンパイラ/リンカのオプション、そして共有オブジェクトを扱うためにリンカに指定する拡張子が含まれます。例文帳に追加

This information includes the selectedcompiler, compiler and linker options, and the extension used by the linker for shared objects. - Python

コンパイラ/リンカに他の情報を与える必要がない場合、この拡張モジュールのための記述はきわめて単純です:例文帳に追加

If no additional instructions to the compiler/linker are needed, describing this extension is quite simple: - Python

例えば、拡張モジュールをコンパイルする際には、コンパイラやリンカのフラグには Python をコンパイルした際と同じものが使われます。例文帳に追加

For example, the same compiler and linker flags used to compile Python will also be used for compilingextensions. - Python

しかし、(少なくとも) Windows で利用できる動的ロード可能な拡張モジュールでは、コンパイラは有効な初期化ではないと文句をつけます。例文帳に追加

However, for dynamically loadable extension modules that must be usable on Windows (at least), the compiler complains that this is not a validinitializer. - Python

例文

並列拡張機能を備えたコンパイラプログラム、その記録媒体、コンパイル方法、およびコンパイル装置例文帳に追加

COMPILER PROGRAM EQUIPPED WITH PARALLEL EXTENDED CAPABILITY, ITS RECORDING MEDIUM, COMPILE METHOD, AND COMPILE DEVICE - 特許庁

>>例文の一覧を見る


調べた例文を記録して、 効率よく覚えましょう
Weblio会員登録無料で登録できます!
  • 履歴機能
    履歴機能
    過去に調べた
    単語を確認!
  • 語彙力診断
    語彙力診断
    診断回数が
    増える!
  • マイ単語帳
    マイ単語帳
    便利な
    学習機能付き!
  • マイ例文帳
    マイ例文帳
    文章で
    単語を理解!
  • その他にも便利な機能が満載!
Weblio会員登録(無料)はこちらから

「拡張コンパイラ」の部分一致の例文検索結果

該当件数 : 15



例文

自動精度拡張コンパイラオプションを利用することも可能ではありますが、このオプションの全詳細についてはどうかマニュアルをご覧ください。例文帳に追加

It may be possible to make use of the automatic precision increase compiler option, but please see the manual for full details about this option.発音を聞く  - コンピューター用語辞典

distutils はバイナリパッケージの作成もサポートしているので、ユーザが拡張モジュールをインストールする際に、必ずしもコンパイラが必要というわけではありません。 distutils ベースのパッケージには、駆動スクリプト (driver script)となる setup.py が入っています。例文帳に追加

Since distutils also supportscreation of binary packages, users don't necessarily need a compiler and distutils to install the extension.A distutils package contains a driver script, setup.py. - Python

拡張モジュール自体については、プリプロセッサ定義、インクルードファイルのディレクトリ、ライブラリのディレクトリ、ライブラリといった指定があります。 distutils はこの情報をコンパイラに応じて異なるやり方で引渡します。例文帳に追加

For the extension itself, it specifies preprocessordefines, include directories, library directories, and libraries.Depending on the compiler, distutils passes this information indifferent ways to the compiler.発音を聞く  - Python

(C++ソースコードファイルを区別できるよう、正しいファイル拡張子を使ってください: .cc や.cpp にすれば、 Unix と Windows 用の双方のコンパイラで認識されるようです。例文帳に追加

(Be sure to use appropriate extensions to distinguish C++ source files: .cc and .cpp seem to be recognized by both Unix and Windows compilers.)However, you can also include SWIG interface (.i) files in the list; the build_ext command knows how to deal with SWIGextensions: it will run SWIG on the interface file and compile the resulting C/C++ file into your extension. - Python

また、コンパイラまたは類似のシステムを、単純なプロパティフォーマット内のリレーションシップ表現を受け入れ、このようなコールを特定のメソッドにダイレクトするように、拡張することができる。例文帳に追加

A compiler or a similar system can be extended so that it accepts relationship expression in a simple property format and directs such a call to a specified method. - 特許庁

プログラムの整合性を保持しつつ、ある実行経路の基本ブロックを拡張することができるようにプログラムを変換するコンパイラ装置を提供。例文帳に追加

To provide a compiler apparatus which converts a program to be able to extend a basic block on a certain execution path, while keeping the consistency of the program. - 特許庁

C や C++ で書かれた Python 拡張をコンパイルする際、しばしば特定のライブラリを使ったり、特定の種類のオブジェクトコードを生成したりする上で、コンパイラやリンカに与えるフラグをカスタマイズする必要があります。 ある拡張モジュールが自分のプラットフォームではテストされていなかったり、クロスコンパイルを行わねばならない場合にはこれが当てはまります。例文帳に追加

Compiling a Python extension written in C or C++ will sometimes require specifying custom flags for the compiler and linker in order to use a particular library or produce a special kind of object code. This is especially true if the extension hasn't been tested on your platform, or if you're trying to cross-compile Python.In the most general case, the extension author might have foreseenthat compiling the extensions would be complicated, and provided a Setup file for you to edit. - Python

例文

X コンソーシアムがコアの配布物として提供しているプログラムは以下を以下に示す:端末エミュレータ、\\fIxterm\\fP;ウィンドウマネージャ、\\fItwm\\fP;ディスプレイマネージャ、\\fIxdm\\fP;コンソールリダイレクトプログラム、\\fIxconsole\\fP;メールインターフェース、\\fIxmh\\fP;ビットマップエディタ、\\fIbitmap\\fP;リソース列挙/操作ツール、\\fIappres\\fP, \\fIeditres\\fP;アクセス制御プログラム、\\fIxauth\\fP, \\fIxhost\\fP, と \\fIiceauth\\fP;ユーザ環境設定プログラム、\\fIxrdb\\fP, \\fIxcmsdb\\fP,\\fIxset\\fP, \\fIxsetroot\\fP, \\fIxstdcmap\\fP, \\fIxmodmap\\fP;時計、 \\fIxclock\\fP と \\fIoclock\\fP;フォント表示、(\\fIxfd\\fP;フォント、ウィンドウとディスプレイの情報表示ユーティリティ、\\fIxlsfonts\\fP, \\fIxwininfo\\fP, \\fIxlsclients\\fP,\\fIxdpyinfo\\fP, \\fIxlsatoms\\fP, と \\fIxprop\\fP;スクリーン画像操作ユーティリティ、 \\fIxwd\\fP, \\fIxwud\\fP, と \\fIxmag\\fP;性能測定ユーティリティ、 \\fIx11perf\\fP;フォントコンパイラ、 \\fIbdftopcf\\fP;\\fIfslsfonts\\fP, \\fIfstobdf\\fP;フォントサーバと関連ユーティリティ、 \\fIxfs\\fP, \\fIfsinfo\\fP, \\fIfslsfonts\\fP, \\fIfstobdf\\fP;X Image 拡張実行プログラム, \\fIxieperf\\fP;\\fImkfontdir\\fP;ディスプレイサーバと関連ユーティリティ、\\fIXserver\\fP, \\fIrgb\\fP, \\fImkfontdir\\fP;リモート実行ユーティリティ、 \\fIrstart\\fP と \\fIxon\\fP;クリップボードマネージャ、 \\fIxclipboard\\fP;\\fIxkbwatch\\fP;キーボード構成記述コンパイラと関連ユーティリティ、 \\fIxkbcomp\\fP, \\fIxkbprint\\fP, \\fIxkbbell\\fP, \\fIxkbevd\\fP, \\fIxkbvleds\\fP, と \\fIxkbwatch\\fP;クライアント停止ユーティリティ、 \\fIxkill\\fP; 最適化 X プロトコルプロキシ、 \\fIlbxproxy\\fP;ファイアウォールセキュリティプロキシ、 \\fIxfwp\\fP;プロキシを制御するプロキシマネージャ、 \\fIproxymngr\\fP;プロキシを発見するユーティリティ、 \\fIxfindproxy\\fP;Netscape Navigator のプラグイン, \\fIlibxrx.so\\fP と \\fIlibxrxnest.so\\fP;RX MIME 型用の補助プログラム、 \\fIxrx\\fP;スクリーンの全てもしくは一部を再描画するユーティリティ、 \\fIxrefresh\\fP 。例文帳に追加

Programs provided in the core X Consortiumdistribution include: a terminal emulator, xterm; a window manager, twm;a display manager, xdm; a console redirect program, xconsole; a mail interface,xmh; a bitmap editor, bitmap; resource listing/manipulation tools, appres,editres; access control programs, xauth, xhost, and iceauth; user preferencesetting programs, xrdb, xcmsdb, xset, xsetroot, xstdcmap, and xmodmap;clocks, xclock and oclock; a font displayer, (xfd; utilities for listinginformation about fonts, windows, and displays, xlsfonts, xwininfo, xlsclients,xdpyinfo, xlsatoms, and xprop; screen image manipulation utilities, xwd,xwud, and xmag; a performance measurement utility, x11perf; a font compiler,bdftopcf; a font server and related utilities, xfs, fsinfo, fslsfonts,fstobdf; an X Image Extension exerciser, xieperf; a display server andrelated utilities, Xserver, rgb, mkfontdir; remote execution utilities,rstart and xon; a clipboard manager, xclipboard; keyboard description compilerand related utilities, xkbcomp, xkbprint, xkbbell, xkbevd, xkbvleds, andxkbwatch; a utility to terminate clients, xkill; an optimized X protocolproxy, lbxproxy; a firewall security proxy, xfwp; a proxy manager to controlthem, proxymngr; a utility to find proxies, xfindproxy; Netscape NavigatorPlug-ins, libxrx.so and libxrxnest.so; an RX MIME-type helper program, xrx;and a utility to cause part or all of the screen to be redrawn, xrefresh.Many other utilities, window managers, games, toolkits, etc.発音を聞く  - XFree86

>>例文の一覧を見る

「拡張コンパイラ」の英訳に関連した単語・英語表現
1
extended compiler コンピューター用語

拡張コンパイラのページの著作権
英和・和英辞典 情報提供元は 参加元一覧 にて確認できます。

   
日外アソシエーツ株式会社日外アソシエーツ株式会社
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.

ピン留めアイコンをクリックすると単語とその意味を画面の右側に残しておくことができます。

こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

このモジュールを今後表示しない
みんなの検索ランキング
閲覧履歴
無料会員登録をすると、
単語の閲覧履歴を
確認できます。
無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2024 GRAS Group, Inc.RSS