亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? config.txt

?? 大數運算類
?? TXT
字號:

usage: ./configure [ variable=value ]...

This configure script generates the file 'makefile' and the file
'../include/NTL/config.h', based upon the values assigned to the
variables on the command line.

Note that all of these configuration options can also be set 
by editing these two (well documented) files by hand.

This command is intended only to provide a slightly more convenient
and (perhaps more importantly) non-interactive way to do this.
This script does not perform any 'magic', like finding out what
the local C compiler is called, etc.  If the defaults are not
correct for your platform, you have to set an appropriate variable.


########### Here are the most important variables, and their default values.

CC=gcc               # The C compiler
CXX=g++              # The C++ compiler
CFLAGS=-O2           # C complilation flags
CXXFLAGS=$(CFLAGS)   # C++ compilation flags (by default, same as CFLAGS)

PREFIX=/usr/local    # Directory in which to install NTL library components

NTL_STD_CXX=off      # ISO Mode switch

NTL_GMP_LIP=off      # Switch to enable the use of GMP as primary 
                     #   long integer package

NTL_GMP_HACK=off     # Switch to enable the use of GMP as supplemental
                     #   long integer package

GMP_PREFIX=none      # Directory in which GMP components have been installed


########## Here are more detailed description of these variables.

########## Basic compilation variables:

CC=gcc
# A C or C++ compiler, e. g., gcc, cc, xlc.
# There are a few components written in C which may be compiled
# under C++, but C compilers tend to generate slightly better code.
# The C++ and C compilers (if different) must generate
# compatible code.


CXX=g++
# A C++ compiler, e.g., g++, CC, xlC


CFLAGS=-O2
# Flags for the C compiler
# Some useful flags:
#   -O2   --  recommended level of optimization
#   -g    --  debugging
#   -mv8  --  needed with gcc/g++ to get the full instruction set
#             of a SparcStation
#   -qarch=ppc  -- needed with xlc/C to get the full instruction set
#                  of a PowerPC



CXXFLAGS=$(CFLAGS)
# Flags for the C++ compiler (usually the same as CFLAGS)
# Some useful flags:
#   -+  -- needed with xlC to make it treat .c files as C++ files

########## Installation path:

PREFIX=/usr/local
# Set this to the directory in which you want NTL components to be
# installed.  When 'make install' is executed, the header
# files are copied into $(PREFIX)/include/NTL, the library itself is
# copied to $(PREFIX)/lib/libntl.a, and the documentation files
# are copied into $(PREFIX)/doc/NTL.
# Unless you have root permissions when running 'make install',
# you will have to override the default PREFIX value with the
# name of your own local directory.
# If you want finer-grained control over where the different
# library components are installed, set the variables 
# INCLUDEDIR, LIBDIR, and DOCDIR (see below).

########## ISO mode switch:

NTL_STD_CXX=off
# Set to 'on' if you want to use the "Standard C++" version of NTL.
# In this version, all of NTL is "wrapped" inside the namespace NTL,
# and are no longer directly accessible---you must either use
# explicit qualification, or using directives, or using declarations.
# However, note that all names that begin with "NTL_" are macros,
# and as such do not belong to any namespace.
# Additionally, instead of including the standard headers
# <stdlib.h>, <math.h>, and <iostream.h>, the standard headers
# <cstdlib>, <cmath>, and <iostream> are included.
# These "wrap" some (but not all) names in namespace std.

# If your compiler is not yet up to date, but you want some
# of the benefits of Standard C++, you might try the "partial Standard C++"
# switches NTL_PSTD_NNS, NTL_PSTD_NHF, NTL_PSTD_NTN (see below).

########## GMP variables:

NTL_GMP_LIP=off
# Set to 'on' if you want to use GMP, the GNU Multi-Precision package,
# as the primary long integer package.
# This will typically yield significantly faster long integer arithmetic 
# compared to the traditional long integer package, and will yield somewhat
# faster long integer arithmetic compared the traditinal package
# supplemented by GMP (i.e., the NTL_GMP_HACK flag).

NTL_GMP_HACK=off
# Set to 'on' if you want to use GMP, the GNU Multi-Precision package,
# as a supplemental long integer package.
# This will typically yield significantly faster long integer arithmetic 
# compared  to the traditional long integer package, while still maintaining
# complete backward compataibility with code that uses the traditional
# long integer package.

# If you set either of the above two flags, note the following.
# If you have installed GMP in a standard location, this is
# all you have to do.  Otherwise, if GMP is built, but not installed
# in a standard place, you have to set either the variable GMP_PREFIX,
# or alternatively, the the variables GMP_INC and GMP_LIB as well (see below).

GMP_PREFIX=none
# If GMP was installed in a standard system directory, e.g., /usr/local,
# then do not set this variable.
# Otherwise, if you want to use GMP and GMP was installed in
# a directory <gmp_prefix>, then set GMP_PREFIX=<gmp_prefix>.
# This works if the directory <gmp_prefix>/include contains gmp.h
# and <gmp_prefix>/lib contains libgmp.a; otherwise, do not set
# this variable, and set the variables GMP_INC and GMP_LIB below.


########### Examples:

# If you are happy with all the default values:
   ./configure
# Actually, the initially installed makefile and config.h files
# already reflect the default values. 

# If your C/C++ compilers are called cc/CC:
   ./configure CC=cc CXX=CC

# If GMP is installed in a standard system directory, and you want to use it:
   ./configure NTL_GMP_LIP=on

# If GMP was installed in a non-standard directory foo:
   ./configure NTL_GMP_LIP=on GMP_PREFIX=foo 

# If you want to use the options -g and -O for compiling C and C++,
# just execute
   ./configure "CFLAGS=-g -O"
# Note the use of quotes to keep the argument in one piece.

# If you want to use GMP as well as ISO mode:
   ./configure NTL_GMP_LIP=on NTL_STD_CXX=on



########### Here is a complete list of the remaining variables,
########### with their default values.  These variables are pretty 
########### esoteric, and you will probably never change their
########### default values.

AR=ar
ARFLAGS=ruv
RANLIB=ranlib
LDFLAGS=
LDFLAGS_CXX=$(LDFLAGS)
LDLIBS=-lm
LDLIBS_CXX=$(LDLIBS)
CPPFLAGS=

LIBDIR=$(PREFIX)/lib
INCLUDEDIR=$(PREFIX)/include
DOCDIR=$(PREFIX)/include

NTL_PSTD_NNS=off
NTL_PSTD_NHF=off
NTL_PSTD_NTN=off

NTL_LONG_LONG_TYPE=long long
NTL_CXX_ONLY=off
NTL_CLEAN_INT=off
NTL_CLEAN_PTR=off
NTL_RANGE_CHECK=off
NTL_X86_FIX=off
NTL_NO_X86_FIX=off
NTL_NO_INIT_TRANS=off

WIZARD=on
NTL_LONG_LONG=off
NTL_AVOID_FLOAT=off
NTL_TBL_REM=off
NTL_AVOID_BRANCHING=off
NTL_FFT_PIPELINE=off


########### Here is a more detailed description of these variables.

########### Further compilation variables:


AR=ar
# command to make a library

ARFLAGS=ruv
# arguments for AR

RANLIB=ranlib
# set to echo if you want to disable it completely

LDFLAGS=
# arguments for linker for C++ programs

LDFLAGS_CXX=$(LDFLAGS)
# libraries for linking C programs

LDLIBS=-lm
# libraries for linking C++ programs

LDLIBS_CXX=$(LDLIBS)
# libraries for linking C++ programs

CPPFLAGS=
# arguments for the C preprocessor


########### Details of the compilation process:

# When a C file foo.c is compiled:
   $(CC) -I../include $(CPPFLAGS) $(CFLAGS) -c foo.c

# When a C file foo.c is compiled and linked:
   $(CC) -I../include $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o foo foo.c $(LDLIBS)

# When a C++ file foo.c is compiled:
   $(CXX) -I../include $(CPPFLAGS) $(CXXFLAGS) -c foo.c

# When a C++ file foo.c is compiled and linked:
   $(CXX) -I../include $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS_CXX) \ 
      -o foo foo.c $(LDLIBS_CXX)

# When the library ntl.a is built:
   $(AR) $(ARFLAGS) ntl.a [ object files ]...
   $(RANLIB) ntl.a
# If the ranlib command does not exist, everything will still function OK.


########### Further installation variables:

LIBDIR=$(PREFIX)/lib
INCLUDEDIR=$(PREFIX)/include
DOCDIR=$(PREFIX)/doc
# Where to install NTL.
# Execution of 'make install' copies header files into $(INCLUDEDIR)/NTL,
# copies the library itself to $(LIBDIR)/libntl.a, and copies the
# documentation files into $(DOCDIR)/NTL.


########## Partial ISO modes

NTL_PSTD_NNS=off 
# NTL namespace --  wraps NTL in a namespace

NTL_PSTD_NHF=off 
# new header files -- use <cstdlib>, etc., instead of <stdlib.h>, etc.  

NTL_PSTD_NTN=off 
# nothrow new -- use the nothrow version of new.  

# Any combination of these PSTD swtiches may be set -- setting them all
# is equvalent to setting NTL_STD_CXX.


########### Basic Configuration Options:

NTL_LONG_LONG_TYPE=long long
# Name of double-word signed integer type.
# This is a non-standard type, and is called 'long long' by many
# compilers.  MS C++ calls it '__int64'.


NTL_CXX_ONLY=off
# It is possible to compile everything using C++ only.
# If you want to do this, CC and CXX should both be C++ compilers.
# You may also want to set NTL_CXX_ONLY=on, which eliminates some
# "C" linkage that is no longer necessary.
# However, it should still work without it.
# 
# This flag can be set independently of NTL_STD_CXX.
# All functions that may have "C" linkage are never wrapped in
# namespace NTL;  instead, their names always start with "_ntl_",
# and as such, they should not conflict with other global names.

NTL_CLEAN_INT=off
# Setting this to 'on' will disallow the use of some non-standard
# integer arithmetic which may yield somewhat better performance.

NTL_CLEAN_PTR=off
# Setting this to 'on' will disallow the use of some non-standard
# pointer arithmetic which may yield somewhat better performance.

NTL_RANGE_CHECK=off
# Setting this to 'on' will generate vector subscript range-check code.
# Useful for debugging, but it slows things down of course.


NTL_X86_FIX=off
# Set to 'on' to force the "x86 floating point fix", 
# overriding the default behavior.
# By default, NTL will apply the "fix" if it looks like it is
# necessary, and if knows how to fix it.
# The problem addressed here is that x86 processors sometimes
# run in a mode where FP registers have more precision than doubles.
# This will cause code in quad_float.c some trouble.
# NTL can normally correctly detect the problem, and fix it,
# so you shouldn't need to worry about this or the next flag.

NTL_NO_X86_FIX=off
# Set to 'on' to forces no "x86 floating point fix", 
# overriding the default behavior.


NTL_NO_INIT_TRANS=off
# When 'off', NTL uses a special code sequence to avoid
# copying large objects in return statements.  However, if your
# compiler optimizes away the return of a *named* local object,
# this is not necessary, and setting this flag to 'on' will result
# in *slightly* more compact and efficient code.  Although
# the emeriging C++ standard allows compilers to perform
# this optimization, I know of none that currently do.
# Most will avoid copying *temporary* objects in return statements,
# and NTL's default code sequence exploits this fact.



########## Performance Options:

WIZARD=on
# Set to 'off' if you want to bypass the wizard; otherwise, set to 'on'.
# The wizard is a script that runs when NTL is built that sets the following
# flags to 'optimize' performance on the current platform.

NTL_LONG_LONG=off
# For platforms that support it, this flag can be set to cause
# the low-level multiplication code to use the type "long long",
# which on some platforms yields a significant performance gain,
# but on others, it can yield no improvement and can even
# slow things down.
# The variable NTL_LONG_LONG_TYPE can be defined to use a type name
# other than "long long".
# If you set NTL_LONG_LONG, you might also want to set
# the flag NTL_TBL_REM.

NTL_AVOID_FLOAT=off
# On machines with slow floating point or---more comminly---slow int/float
# conversions, this flag can lead to faster code.
# If you set NTL_AVOID_FLOAT, you should probably also
# set NTL_TBL_REM.
# Note that at most one of NTL_LONG_LONG and NTL_AVOID_FLOAT may be set.
# Also note that if NTL_DIRTY_INT is not set, and neither NTL_AVOID_FLOAT
# nor NTL_LONG_LONG are set, the default behavior is the same as if
# NTL_AVOID_FLOAT were set.

NTL_TBL_REM=off
# With this flag, some divisions are avoided in the
# ZZ_pX multiplication routines.  If you use the NTL_AVOID_FLOAT
# or NTL_LONG_LONG flags, then you should probably use this one too.

NTL_AVOID_BRANCHING=off
# With this option, branches are replaced at several
# key points with equivalent code using shifts and masks.
# Recommended for use with RISC architectures, especially
# ones with deep pipelines and high branch penalities.
# This flag is becoming less helpful as newer machines
# have much smaller branch penalties, but still may be worth a try.


NTL_FFT_PIPELINE=off
# If using NTL_AVOID_BRANCHING, you might want to try this as well.
#This causes the FFT routine to use a software pipeline.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久久综合日本| 精品88久久久久88久久久| 午夜精品成人在线| 久久久久久久免费视频了| 91国产丝袜在线播放| 日本亚洲视频在线| 亚洲三级免费观看| 久久久午夜精品| 欧美性猛交一区二区三区精品| 黄网站免费久久| 亚洲18女电影在线观看| 亚洲国产成人午夜在线一区| 日韩一区二区三区高清免费看看| 色婷婷av久久久久久久| 国产在线播放一区| 日本成人在线不卡视频| 亚洲综合在线免费观看| 国产精品视频看| 亚洲精品一区二区三区精华液| 欧美日韩卡一卡二| 99国产精品一区| 国产高清亚洲一区| 美女国产一区二区三区| 午夜国产不卡在线观看视频| 亚洲男女毛片无遮挡| 国产精品免费视频网站| 久久久99久久精品欧美| 日韩精品一区二区三区老鸭窝| 欧美日韩午夜在线| 91久久精品一区二区三| heyzo一本久久综合| 成人综合日日夜夜| 国产成都精品91一区二区三| 国产乱妇无码大片在线观看| 蜜臀久久99精品久久久久宅男 | 日本视频一区二区三区| 亚洲一级片在线观看| 亚洲视频一区在线观看| 久久久亚洲精品一区二区三区| 日韩欧美国产精品| 日韩一区二区三区观看| 欧美一区二区播放| 91精品国产综合久久婷婷香蕉| 欧美日本视频在线| 欧美日韩一区三区| 在线播放91灌醉迷j高跟美女| 欧美日韩三级视频| 欧美人体做爰大胆视频| 欧美欧美午夜aⅴ在线观看| 欧美亚洲国产一区二区三区va| 欧美性感一区二区三区| 色哦色哦哦色天天综合| 在线观看网站黄不卡| 欧美日韩在线精品一区二区三区激情| 欧美亚洲免费在线一区| 欧美一区二区网站| 日韩亚洲欧美在线| 久久久综合视频| 国产精品久久久久永久免费观看 | 91蜜桃网址入口| 91美女福利视频| 欧美日韩在线直播| 欧美电影免费观看高清完整版在线观看 | 在线视频亚洲一区| 欧美日韩精品电影| 欧美大尺度电影在线| 日韩亚洲国产中文字幕欧美| 精品国产一区二区亚洲人成毛片| 久久先锋资源网| 国产精品视频一二三区| 一区二区三区在线影院| 奇米四色…亚洲| 国产成人精品一区二区三区网站观看 | 亚洲日本青草视频在线怡红院 | 综合色中文字幕| 亚洲国产成人tv| 美女视频网站久久| 成人毛片在线观看| 欧美女孩性生活视频| 久久久久国产精品人| 亚洲日本一区二区三区| 麻豆久久一区二区| 成人涩涩免费视频| 在线成人av网站| 日韩毛片在线免费观看| 日韩影视精彩在线| 成人一区二区在线观看| 欧美日韩中字一区| 国产亚洲va综合人人澡精品| 亚洲一区二区四区蜜桃| 国产乱码字幕精品高清av| 91福利精品第一导航| 欧美大片顶级少妇| 亚洲成人激情综合网| 国产精品18久久久久| 欧美在线观看一二区| 国产欧美一区二区在线| 石原莉奈在线亚洲三区| caoporen国产精品视频| 精品捆绑美女sm三区| 怡红院av一区二区三区| 国产乱子伦视频一区二区三区| 一本大道av伊人久久综合| 久久亚洲免费视频| 日本成人在线看| 在线免费不卡电影| 国产精品久久久久影视| 精品无码三级在线观看视频| 在线观看一区二区视频| 中文字幕在线一区二区三区| 韩国成人在线视频| 777午夜精品免费视频| 日韩理论电影院| 国产成都精品91一区二区三| 精品日韩一区二区三区免费视频| 亚洲一区在线电影| 99国内精品久久| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 中文字幕不卡在线| 久久97超碰色| 制服丝袜一区二区三区| 亚洲夂夂婷婷色拍ww47| 色偷偷成人一区二区三区91 | 六月丁香婷婷色狠狠久久| 在线看国产一区二区| 亚洲欧美综合色| fc2成人免费人成在线观看播放| 久久一区二区三区四区| 蜜桃av一区二区| 日韩美女视频在线| 男男gaygay亚洲| 欧美高清激情brazzers| 亚洲超碰精品一区二区| 欧美日韩国产三级| 亚洲午夜免费电影| 欧美综合天天夜夜久久| 亚洲一区二区在线视频| 91久久线看在观草草青青| 亚洲精品视频观看| 91福利小视频| 性欧美大战久久久久久久久| 欧美久久久久久久久久| 午夜精品久久久久久不卡8050| 3atv一区二区三区| 美女精品自拍一二三四| 久久免费国产精品| 国产精品一区三区| 国产精品三级av| 91丨九色丨国产丨porny| 一区二区三区四区不卡视频| 欧美亚洲综合另类| 蜜桃精品在线观看| 久久精品视频免费| 99re这里都是精品| 亚洲一区二区三区在线| 欧美精品亚洲二区| 精品一区在线看| 欧美国产精品中文字幕| 99re这里只有精品首页| 亚洲国产毛片aaaaa无费看| 69久久99精品久久久久婷婷| 久久99精品国产91久久来源| 国产精品久久久久久亚洲毛片 | 久久夜色精品国产欧美乱极品| 国产成人精品一区二区三区四区 | 欧美三级视频在线| 日韩av午夜在线观看| 精品少妇一区二区三区免费观看 | 精品成人一区二区| 成人高清免费观看| 亚洲成a人在线观看| 久久一日本道色综合| 色婷婷精品久久二区二区蜜臂av | 麻豆视频一区二区| 国产亚洲一区二区在线观看| 91色porny蝌蚪| 日韩av电影一区| 国产婷婷精品av在线| 欧美在线观看一二区| 国产精品香蕉一区二区三区| 亚洲久草在线视频| 精品国产污网站| 91官网在线免费观看| 久久精品999| 国产精品二区一区二区aⅴ污介绍| 欧美三日本三级三级在线播放| 国产一区二区久久| 亚洲精品国产无套在线观 | 亚洲免费观看高清完整| 337p亚洲精品色噜噜狠狠| 丰满白嫩尤物一区二区| 亚洲国产视频一区| 中文字幕第一区第二区| 欧美精品1区2区3区| www.66久久| 秋霞电影网一区二区| 亚洲丝袜另类动漫二区| 亚洲精品在线网站| 欧美日韩高清一区二区不卡| 成人av在线看|