clucene2.3.3.4编译cmake:boost not found
今天在Windows下编译Clucene,下载了最新版的cmake2.8开始编译,结果郁闷坏了 我的机子上了boost是BoostPro安装下的,结果编译的时候找不到boost,最后在这里找到了 C:/Program Files/CMake 2.8/share/cmake-2.8/Modules/FindBoost.cmake这个东西,大概在390
今天在Windows下编译Clucene,下载了最新版的cmake2.8开始编译,结果郁闷坏了
我的机子上了boost是BoostPro安装下的,结果编译的时候找不到boost,最后在这里找到了
C:/Program Files/CMake 2.8/share/cmake-2.8/Modules/FindBoost.cmake这个东西,大概在390行有个版本选择的序列,结果我发现里面没有我下载的boost1.46.1这个版本,加上之后就编译过去了

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In today's situation where almost all games are online, it is not advisable to ignore the optimization of home network. Almost all routers are equipped with NATBoost and QoS features designed to enhance users' gaming experience. This article will explore the definition, advantages and disadvantages of NATBoost and QoS. NATBoost vs. Qos for games; which one is better? NATBoost, also known as Network Address Translation Boost, is a feature built into routers that improves their performance. It's especially important for gaming because it helps reduce network latency, which is the time it takes for data to be transferred between the gaming device and the server. By optimizing the data processing method within the router, NATBoost achieves faster data processing speed and lower latency, thus changing the

When programming in C++, we often encounter the problem of undeclared identifiers. This usually occurs when undefined variables, functions, or classes are used, causing the compiler to fail to recognize these identifiers, resulting in compilation errors. This article describes common causes of undeclared identifier problems and how to resolve them. Common Causes Undeclared identifier problems usually arise from the following reasons: Variables, functions, or classes are not declared correctly: You should declare variables, functions, or classes before using them. If the variable is not declared or function

In recent years, Go language has become the choice of more and more developers. However, compared to other programming languages, the compilation speed of Go language is not fast enough. Many developers will encounter this problem when compiling Go programs: Why does my Go program take longer to compile? This article will explore this issue from several aspects. The compiler architecture of Go language The compiler architecture of Go language adopts a three-stage design, which are front-end, middle layer and back-end. The front-end is responsible for translating the source code into intermediate code in Go language, and the middle layer will

Java is a very popular programming language that is widely used to develop various types of software. In Java development, compilation and decompilation technology are very important links. Compilation technology is used to convert Java code into executable files, while decompilation technology allows one to convert executable files back into Java code. This article will introduce compilation and decompilation techniques in Java. 1. Compilation technology Compilation is the process of converting high-level language (such as Java) code into machine language. in Java

Reasons: 1. There are many versions of Linux, but each version uses different software or kernel versions, and the environment that the binary package depends on may not be able to run normally, so most software directly provides source code for compilation and installation. 2. Easy to customize to meet different needs. 3. Convenient for operation and maintenance and developer maintenance; source code can be packaged as binary, but packaging this software will require costly extra work, including maintenance, so if it is source code, the software manufacturer will maintain it directly.

Configuration Guide for Building Linux Kernel Modules Using CMake Introduction: CMake is a cross-platform build tool that can help developers manage and build projects more conveniently. When developing Linux kernel modules, using CMake can simplify the configuration and compilation process and improve development efficiency. This article will introduce how to use CMake to configure and build Linux kernel modules, with code examples. 1. Install CMake Before starting, we need to install CMake first. On Ubuntu, you can pass

C++ compilation error: The function parameter list is too long, how to solve it? When writing programs in C++, you sometimes encounter such a compilation error: the function parameter list is too long. For C++ beginners, this may be a headache. Next, we’ll cover the causes and solutions to this problem. First, let's take a look at the basic rules of C++ function parameters. In C++, function parameters must be declared between the function name and the opening parenthesis. When you pass a function parameter, you tell the function what to do. These parameters can be any

Overview of the configuration guide for building the Linux kernel using CMake In Linux development, building and configuring the kernel is an important step. For most people, using Kconfig and Makefile is the most common configuration method. However, using CMake to build and configure the Linux kernel is also a flexible and powerful option. This article will introduce how to use CMake to build and configure the Linux kernel, with some code examples. Install CMake First, we need to install CMak
