search
How to use jam in pythonJun 20, 2019 am 10:08 AM
python

Bjam is a project management tool similar to Make. It is a compilation manager customized for Boost. It is based on FTJam, which was developed from Perforce Jam. Bjam is backwards compatible with Perforce Jam.

The Bjam tool is maintained by the Boost.Jam project.

How to use jam in python

The current latest version of Bjam is: 3.1.9 (released with Boost-1.31.0). It is based on 2.4 of Jam/MR.

Jam language definition

lexical

Jam believes that all tokens (Token) are composed of blanks, tabs , or newlines).

Including symbols (:) and (;) must also be separated by whitespace characters.

Exception:

Tokens surrounded by quotation marks (") , you can use whitespace symbols.

The symbol (/) can escape quotes and whitespace characters.

A string surrounded by {} can use whitespace symbols and is considered just a string .

Keywords, when used as tokens, must be surrounded by quotation marks.

Built-in Rule semantics

1. Construct dependencies

DEPENDS targets1 : targets2 ;

Using target1 depends on targets2. If targets2 is newer than targets1, targets1 will be rebuilt.

INCLUDES targets1 : targets2 ;

Construct homogeneous dependencies so that targets that depend on targets2 also depend on targets1.

2. Modify dependencies

ALWAYS targets ;

LEAVES targets ;

NOCARE targets ;

NOTFILE targets ;

NOUPDATE targets ;

TEMPORARY targets ;

3.Tools

# ECHO args ;

Display parameters

EXIT args ;

Display parameters and exit.

GLOB directories: patterns: downcase-opt

Get the file names that match patterns from directories.

MATCH regexps: list

Get the symbols that match regexps from the list.

Flow control

for var in list { statements }

Execute statements once for each item in the list, var is designed to be the value of the list element.

if cond { statements }

[ else statements ]

Obviously, the else part is optional.

The condition can be:

a 当a的元素中最少有一个非空字符串时为true;
a = b  列表元素全部相同时为true
a != b  列表元素不完全相同时为true
a < b  a和b中,第一个不相同的元素相比较, a的元素比b小(按字符串顺序).
a <= b  a中每个元素都比b对应元素小或相等
a > b  a和b中,第一个不相同的元素相比较, a的元素比b大(按字符串顺序).
a >= b  a中每个元素都比b对应元素大或相等
a in b  a所有元素都可以在b中找到,或者a是空表
! cond  逻辑非 
cond && cond  逻辑与
cond || cond  逻辑或
( cond )  优先运算

include file ;

Use jam to read file and process it.

This process occurs during the parsing phase, so file will not be constructed and there is no file scope.

local vars [ = values ​​] ;

Define a local variable, and the value of the original variable outside {} will be stored back.

return values ​​;

Set the return value, please note In the rule, return does not jump out of the execution process of the rule.

switch value 
{ 
case pattern1 : statements ; 
case pattern2 : statements ; 
... 
}

Execute one or zero statements according to the value. The pattern can be the following symbol wildcard

? Matches any character

* Match zero or more characters

[chars] Match any character in chars

[^chars] Match any character not in chars

/x Matches x (escapes other wildcards)

while cond { statements }

When the condition is true, statement is executed repeatedly.

Variable control and internal Create a variable

The Jam variable is a string list, its elements may be 0 or multiple strings. An undefined variable and an empty variable

(0 elements) There is no difference. But a variable can be defined to contain multiple empty strings.

Variables can take values ​​through $(variable)

Variables have "global" or " There are two types of target-specific variables. Target-specific variables only take values ​​when building the target.

There are several ways to define variables.

 variable = elements ; 
 variable += elements ; 
 variable on targets = elements ; 
 variable on targets += elements ; 
 variable default = elements ; 
 variable ?= elements ;

The first two ways define global variables, and the third way It is the same as the fourth way to define target-specific variables.

= can rewrite the content of the variable. = connects the original content and the new content.

The last two effects are the same: when the variable is not defined When, define a global variable.

The above is the detailed content of How to use jam in python. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment