|
STLport安装指南(2) and should be used as a helper to create initial config for a new compiler only. Your compiler should be recognized by STLport source code with no configuring. Please edit appropriate configuration header for your compiler directly if you have to make compiler-specific configuration changes. 注意:不要尝试运行configure命令,该方法已经废弃不用了,已经移到一个安全单独的目录,只能用于作为为新编译器的创建初始配置的辅助手段。您使用的编译器应该能够被STLport的源代码识别,如果需要针对您使用的编译器进行特殊的配置,请直接修改适当的头文件。 4) Go to "src" subdirectory. It contains various makefiles for different compilers. If you are not able to find makefile for your particular compiler, please use one that looks most similar to your make engine to create your own. 直接进入src目录,这个目录包含了各种不同编译器使用的make文件,请选择一个和你的编译器相似的make文件。 Verify you can do command line compiles. IDE users may have to do something special, like add environment variables (for Microsoft) or install additional compiler components (for Metrowerks), before they can use their command line compilers. 必须在命令行方式编译,使用IDE编译需要设置一些环境变量(微软)或者安装特殊的编译组件(Metrowerks)。 IMPORTANT : If you DO NOT plan to use STLport iostreams implementation, you do not have to build the library. Please do this instead : 如果你不需要使用STLport iostream类库,你不必编译整个类库,请使用下面的方法 4-1) Using appropriate makefile, do "make -f <your compiler name>.mak prepare". Please do not skip this! On some platforms, it creates necessary symbolic links. If you do build STLport iostream, this step is performed automatically when you do "make all".
|