Skip to content

Commit 3a074b4

Browse files
author
WuK
authored
12.0.0.20230529: update to debian:bookworm (#117)
* Docker image 瘦身 * fix Dockerfile * fix workflow * rm Symbolic Link * add file * Revert "Docker image 瘦身" * 12.0.0.20230529: update to debian:bookworm (#113) 1. 更新实验环境为 `debian:bookworm`、`clang-14`、`llvm-14` 2. 重构 `lib1. 更新实验环境为 `debian:bookworm`、`clang-14`、`llvm-14` 2. 重构 `librarian` 目录 3. 调整 `cmake_minimum_required`,与 `llvm-14` 对齐 4. 调整文档 5. 修复 #74 rarian` 目录 3. 调整 `cmake_minimum_required`,与 `llvm-14` 对齐 4. 调整文档 5. 修复 #74
1 parent c4ea7b1 commit 3a074b4

34 files changed

+62
-55
lines changed

.github/workflows/docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
context: .
5656
tags: ${{ steps.meta.outputs.tags }}
5757
labels: ${{ steps.meta.outputs.labels }}
58-
build-args: BASE_IMAGE=debian:11
58+
build-args: BASE_IMAGE=debian:bookworm
5959

6060
- name: Build Docker image for unstable-slim
6161
if: github.ref_name == 'unstable-slim' || github.base_ref == 'unstable-slim'
@@ -91,7 +91,7 @@ jobs:
9191
context: .
9292
tags: ${{ steps.meta.outputs.tags }}
9393
labels: ${{ steps.meta.outputs.labels }}
94-
build-args: BASE_IMAGE=debian:11
94+
build-args: BASE_IMAGE=debian:bookworm
9595
platforms: linux/amd64,linux/arm64/v8
9696

9797
- name: Build and push Docker image for unstable-slim

CMakeLists.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
cmake_minimum_required(VERSION 3.18.4)
2-
project(SYsU-lang VERSION 11.1.0.20230227)
1+
# <https://github.com/llvm/llvm-project/blob/llvmorg-14.0.6/llvm/CMakeLists.txt>
2+
cmake_minimum_required(VERSION 3.13.4)
3+
project(SYsU-lang VERSION 12.0.0.20230529)
34
include(CPack)
45
include(CTest)
56
add_subdirectory(compiler)

README.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ SYsU 是一个教学语言,应用于中山大学(**S**un **Y**at-**s**en **U
1111

1212
## 编译运行
1313

14-
需要注意的是,[SysY](https://gitlab.eduxiji.net/nscscc/compiler2021/-/blob/master/SysY%E8%AF%AD%E8%A8%80%E5%AE%9A%E4%B9%89.pdf) 语言允许编译时能够求值的 `const int` 作为数组大小,导致部分算例不能通过 `gcc` 的编译,因此为保持兼容推荐使用 `clang` 编译。经过测试的实验环境为 `debian:11`
14+
需要注意的是,[SysY](https://gitlab.eduxiji.net/nscscc/compiler2021/-/blob/master/SysY%E8%AF%AD%E8%A8%80%E5%AE%9A%E4%B9%89.pdf) 语言允许编译时能够求值的 `const int` 作为数组大小,导致部分算例不能通过 `gcc` 的编译,因此为保持兼容推荐使用 `clang` 编译。经过测试的实验环境为 `debian:bookworm`
1515

1616
```bash
1717
# 安装依赖
1818
sudo apt-get install -y --no-install-recommends \
1919
clang llvm-dev zlib1g-dev lld flex bison \
2020
cmake python3 ninja-build git
2121

22-
git clone https://github.com/arcsysu/SYsU-lang
22+
git clone \
23+
-c feature.manyFiles=true \
24+
--depth=1 \
25+
https://github.com/arcsysu/SYsU-lang
26+
2327
cd SYsU-lang
2428

2529
# 编译安装
@@ -307,7 +311,7 @@ entry:
307311
大算例以 `git submodule` 的形式存放在 `tester/third_party`。加载方式:
308312

309313
```bash
310-
git submodule update --init
314+
git submodule update --init --recursive --depth 1
311315
```
312316

313317
## 实验反馈
@@ -347,7 +351,7 @@ git submodule update --init
347351

348352
目前本项目存在两个分支:
349353

350-
- [`latest`](https://github.com/arcsysu/SYsU-lang/tree/latest) 分支下为中大课程教学中使用的代码,功能稳定,预期在 `debian:11` 环境中工作。
354+
- [`latest`](https://github.com/arcsysu/SYsU-lang/tree/latest) 分支下为中大课程教学中使用的代码,功能稳定,预期在 `debian:bookworm` 环境中工作。
351355
- [`unstable-slim`](https://github.com/arcsysu/SYsU-lang/tree/unstable-slim) 分支下为助教探索后续实验改革方案(如 mlir)的代码,预期在`debian:unstable-slim` 环境中工作。该分支中的文档可能不会及时更新,以对应 [Dockerfile](https://github.com/arcsysu/SYsU-lang/blob/unstable-slim/Dockerfile) 中的测试语句为准。
352356

353357
对于中大以外的高校教学者与个人自学者,我们建议使用 [releases](https://github.com/arcsysu/SYsU-lang/releases) 中最新发布的实验框架源码以及对应版本号的 [docker image](https://hub.docker.com/r/wukan0621/sysu-lang)。它们可能在时间上略有落后,但经过了中大一学期的教学检验,不存在潜在的可能导致教学事故的错误。我们也十分欢迎来自你们的课堂反馈[![Discussions](https://img.shields.io/github/discussions/arcsysu/SYsU-lang)](https://github.com/arcsysu/SYsU-lang/discussions) 与改进建议[![Issues](https://img.shields.io/github/issues/arcsysu/SYsU-lang)](https://github.com/arcsysu/SYsU-lang/issues)[![Issues-pr](https://img.shields.io/github/issues-pr/arcsysu/SYsU-lang)](https://github.com/arcsysu/SYsU-lang/pulls) 请提交至 `unstable-slim` 分支)。

generator/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ $ echo $? # 在 Unix & Linux 中,可以通过 echo $? 来查看最后运行的
135135

136136
## 你可能会感兴趣的
137137

138-
- [Kaleidoscope: Code generation to LLVM IR](https://releases.llvm.org/11.0.1/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.html)
138+
- [Kaleidoscope: Code generation to LLVM IR](https://releases.llvm.org/14.0.0/docs/tutorial/MyFirstLanguageFrontend/LangImpl03.html)
139139
- [SYsU-lang 实验三快速上手](https://www.yuque.com/shuitang/rra4fg/bnqy1c)
140140
- [Viz.js — Graphviz in your browser.](http://viz-js.com/)
141-
- [llvm::IRBuilder](https://github.com/llvm/llvm-project/blob/llvmorg-11.0.1/llvm/include/llvm/IR/IRBuilder.h)
142-
- 该文件同样位于 debian:11[llvm-dev](https://packages.debian.org/bullseye/devel/llvm-dev) 包的 </usr/include/llvm/IR/IRBuilder.h>。
141+
- [llvm::IRBuilder](https://github.com/llvm/llvm-project/blob/llvmorg-14.0.6/llvm/include/llvm/IR/IRBuilder.h)
142+
- 该文件同样位于 debian:bookworm[llvm-dev](https://packages.debian.org/bookworm/devel/llvm-dev) 包的 </usr/include/llvm/IR/IRBuilder.h>。

lexer/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
find_package(FLEX REQUIRED)
2-
flex_target(lexer lexer.l main.cc DEFINES_FILE lexer.hh)
2+
flex_target(lexer lexer.l ${CMAKE_CURRENT_BINARY_DIR}/main.cc
3+
DEFINES_FILE ${CMAKE_CURRENT_BINARY_DIR}/lexer.hh)
34
add_executable(sysu-lexer ${FLEX_lexer_OUTPUTS})
45
install(TARGETS sysu-lexer)

lexer/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ eof '' Loc=<tester/functional/000_main.sysu.c:3:2>
7373
## 你可能会感兴趣的
7474

7575
- [Lexical Analysis With Flex](http://westes.github.io/flex/manual/)
76-
- [FindFLEX — CMake 3.18.6 Documentation](https://cmake.org/cmake/help/v3.18/module/FindFLEX.html)
77-
- [Preprocessor Output](https://gcc.gnu.org/onlinedocs/gcc-10.2.0/cpp/Preprocessor-Output.html)
76+
- [FindFLEX — CMake 3.13.5 Documentation](https://cmake.org/cmake/help/v3.13/module/FindFLEX.html)
77+
- [Preprocessor Output](https://gcc.gnu.org/onlinedocs/gcc-12.2.0/cpp/Preprocessor-Output.html)
7878
- [这篇博客](https://wu-kan.cn/2020/05/14/%E4%BD%BF%E7%94%A8%E8%AF%8D%E6%B3%95%E5%88%86%E6%9E%90%E5%99%A8-Flex-%E6%8F%90%E5%8F%96%E7%A8%8B%E5%BA%8F%E4%B8%AD%E7%9A%84%E6%95%B4%E6%95%B0%E5%92%8C%E6%B5%AE%E7%82%B9%E6%95%B0/)提到了一种处理注释的方案,如果你不想使用 [flex 自带的注释处理方法](http://westes.github.io/flex/manual/Comments-in-the-Input.html)(当然,实际上注释在预处理阶段已经去除了…)。
7979
- [这篇博客](https://wu-kan.cn/2020/07/03/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F%E5%85%B3%E7%B3%BB%E5%88%A4%E5%AE%9A/)通过构造有限自动机,判断两个正则表达式的关系。

librarian/CMakeLists.txt

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
1-
set(libs sysy;sysu)
2-
foreach(lib IN LISTS libs)
3-
file(GLOB mains ${lib}/*.cc)
4-
add_library(${lib} SHARED ${mains})
5-
install(TARGETS ${lib})
6-
file(GLOB mains ${lib}/*.h)
7-
foreach(mainfile ${mains})
8-
install(FILES ${mainfile} DESTINATION include/${lib})
9-
endforeach()
10-
endforeach()
1+
add_subdirectory(lib)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

librarian/lib/CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
set(libs sysy;sysu)
2+
foreach(lib IN LISTS libs)
3+
file(GLOB mains ${lib}/*.cc)
4+
add_library(${lib} SHARED ${mains})
5+
install(TARGETS ${lib})
6+
target_include_directories(${lib}
7+
PRIVATE ${CMAKE_SOURCE_DIR}/librarian/include)
8+
install(DIRECTORY ${CMAKE_SOURCE_DIR}/librarian/include/${lib} TYPE INCLUDE)
9+
endforeach()

librarian/sysu/fcntl.cc librarian/lib/sysu/fcntl.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "fcntl.h"
1+
#include "sysu/fcntl.h"
22
#include <fcntl.h>
33

44
#ifdef __cplusplus

librarian/sysu/stdio.cc librarian/lib/sysu/stdio.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "stdio.h"
1+
#include "sysu/stdio.h"
22
#include <stdio.h>
33

44
#ifdef __cplusplus

librarian/sysu/stdlib.cc librarian/lib/sysu/stdlib.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "stdlib.h"
1+
#include "sysu/stdlib.h"
22
#include <stdlib.h>
33

44
#ifdef __cplusplus

librarian/sysu/string.cc librarian/lib/sysu/string.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "string.h"
1+
#include "sysu/string.h"
22
#include <string.h>
33

44
#ifdef __cplusplus

librarian/sysu/unistd.cc librarian/lib/sysu/unistd.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "unistd.h"
1+
#include "sysu/unistd.h"
22
#include <unistd.h>
33

44
#ifdef __cplusplus

librarian/sysy/sylib.cc librarian/lib/sysy/sylib.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define __SYSY 202203L
22
#define __SYSY_NO_DEFINE
3-
#include "sylib.h"
3+
#include "sysy/sylib.h"
44
#include <chrono>
55
#include <cstdarg>
66
#include <cstdio>

optimizer/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
LIBRARY_PATH=$HOME/sysu/lib:$LIBRARY_PATH \
2121
LD_LIBRARY_PATH=$HOME/sysu/lib:$LD_LIBRARY_PATH &&
2222
clang -E tester/mizuno_ai/mizuno_ai.sysu.c |
23-
clang -cc1 -O0 -S -emit-llvm |
23+
clang -cc1 -O0 -S -emit-llvm -disable-O0-optnone |
2424
opt -S --enable-new-pm -load-pass-plugin=libsysuOptimizer.so -passes="sysu-optimizer-pass" )
2525
```
2626

@@ -46,11 +46,11 @@
4646

4747
并思考,这些优化是否可以在语法树(即 `sysu-generator`)上完成?在这两个阶段各自的优点与缺点是什么?
4848

49-
如果你使用了来自 LLVM 的其他组件,你需要将其加入本目录下 `CMakeLists.txt` 中的 `llvm_map_components_to_libnames`,否则可能无法通过编译。你可以终端执行 `llvm-config --components`,查看所有的 LLVM 组件名称。然而,禁止使用任何 LLVM 自带的 [transform-passes](https://releases.llvm.org/11.0.1/docs/Passes.html#transform-passes)(当然,你被鼓励去学习这些 pass 的实现原理),助教会结合 `llvm-objdump` 等工具检查。
49+
如果你使用了来自 LLVM 的其他组件,你需要将其加入本目录下 `CMakeLists.txt` 中的 `llvm_map_components_to_libnames`,否则可能无法通过编译。你可以终端执行 `llvm-config --components`,查看所有的 LLVM 组件名称。然而,禁止使用任何 LLVM 自带的 [transform-passes](https://releases.llvm.org/14.0.0/docs/Passes.html#transform-passes)(当然,你被鼓励去学习这些 pass 的实现原理),助教会结合 `llvm-objdump` 等工具检查。
5050

5151
### Q & A:有关 new pass manager 与 legacy pass manager
5252

53-
Pass/PassManager 是 LLVM 里最重要的核心组件之一,自 LLVM 诞生以来已经有数十年历史。由于原有的 PM 编译效率低且错失很多优化机会,2014 年开始 LLVM 团队对其开始重构。在实验环境中使用的 LLVM-11.0.1 默认使用的仍然是旧 PM,但已经包含新 PM;在 LLVM-12 中已经默认使用 new pass manager 代替 legacy pass manager;在助教写下这段话的 2022 年 03 月 25 日,LLVM-14 正式发布,其 [ReleaseNotes](https://releases.llvm.org/14.0.0/docs/ReleaseNotes.html) 中提到:
53+
Pass/PassManager 是 LLVM 里最重要的核心组件之一,自 LLVM 诞生以来已经有数十年历史。由于原有的 PM 编译效率低且错失很多优化机会,2014 年开始 LLVM 团队对其开始重构。在 SYsU-lang 第一年使用的 LLVM-11 默认使用的仍然是旧 PM,但已经包含新 PM;在 LLVM-12 中已经默认使用 new pass manager 代替 legacy pass manager;在助教写下这段话的 2022 年 03 月 25 日,LLVM-14 正式发布,其 [ReleaseNotes](https://releases.llvm.org/14.0.0/docs/ReleaseNotes.html) 中提到:
5454

5555
> Using the legacy pass manager for the optimization pipeline is deprecated and will be removed after LLVM 14.
5656

optimizer/main.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ int main(int argc, char **argv) {
2121
"calls in the input IR file\n");
2222

2323
// Makes sure llvm_shutdown() is called (which cleans up LLVM objects)
24-
// https://releases.llvm.org/11.0.1/docs/ProgrammersManual.html#ending-execution-with-llvm-shutdown
24+
// https://releases.llvm.org/14.0.0/docs/ProgrammersManual.html#ending-execution-with-llvm-shutdown
2525
llvm::llvm_shutdown_obj SDO;
2626

2727
// Parse the IR file passed on the command line.

optimizer/optimizer.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ sysu::StaticCallCounterPrinter::run(llvm::Module &M,
2727

2828
sysu::StaticCallCounter::Result
2929
sysu::StaticCallCounter::run(llvm::Module &M, llvm::ModuleAnalysisManager &) {
30-
llvm::MapVector<const llvm::Function *, unsigned> Res;
30+
Result Res;
3131

3232
for (auto &Func : M) {
3333
for (auto &BB : Func) {

parser/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
find_package(LLVM REQUIRED)
22
find_package(BISON REQUIRED)
3-
bison_target(parser parser.y main.cc DEFINES_FILE parser.hh)
3+
bison_target(parser parser.y ${CMAKE_CURRENT_BINARY_DIR}/main.cc
4+
DEFINES_FILE ${CMAKE_CURRENT_BINARY_DIR}/parser.hh)
45
add_executable(sysu-parser ${BISON_parser_OUTPUT_SOURCE})
56
llvm_map_components_to_libnames(LLVM_LIBS support)
67
target_link_libraries(sysu-parser ${LLVM_LIBS})

parser/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ flowchart TD;
255255
### Q & A:为什么要输出到 `llvm::json`?
256256

257257
1. 输出到 json,便于使用 python 脚本和 clang 导出的语法树对比,自动批改。
258-
2. 输出到 json,因为 json 格式非常容易理解,不需要像 [LLVM 官方教程](https://releases.llvm.org/11.0.1/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.html) 一样定义很多节点。
258+
2. 输出到 json,因为 json 格式非常容易理解,不需要像 [LLVM 官方教程](https://releases.llvm.org/14.0.0/docs/tutorial/MyFirstLanguageFrontend/LangImpl02.html) 一样定义很多节点。
259259
3. 输出到 `llvm::json`,可以让同学们提前上手 LLVM 库的使用,平滑下一个实验的难度。
260260

261261
## 评分规则
@@ -314,15 +314,15 @@ flowchart TD;
314314
- 输入一个经过预处理的 SYsU 源程序,输出其语法分析树。
315315
- 建议:将 `sysu-lexer` 的核心代码打包成一个 `libsysuLexer.so`,将 `sysu-parser` 的核心代码打包成一个 `libsysuParser.so`,然后链接到到同一个 `main.cc`
316316
- 注意:`add_flex_bison_dependency`
317-
7. 鉴于本次实验已经开始进入 LLVM 开发范畴,建议遵守 [LLVM Coding Standards](https://releases.llvm.org/11.0.1/docs/CodingStandards.html)
317+
7. 鉴于本次实验已经开始进入 LLVM 开发范畴,建议遵守 [LLVM Coding Standards](https://releases.llvm.org/14.0.0/docs/CodingStandards.html)
318318
- 可以使用 `clang-tidy``clang-format` 工具检查你的代码是否规范,如 `cmake -DCMAKE_CXX_CLANG_TIDY=clang-tidy #...`
319-
- 将 [LLVM Coding Standards](https://releases.llvm.org/11.0.1/docs/CodingStandards.html) 与 [GNU](https://www.gnu.org/prep/standards/standards.html)、[Google](https://google.github.io/styleguide/)、[Chromium](https://chromium.googlesource.com/chromium/src/+/HEAD/styleguide/c++/c++-dos-and-donts.md)、[Microsoft](https://docs.microsoft.com/zh-cn/dotnet/csharp/fundamentals/coding-style/coding-conventions)、[Mozilla](https://firefox-source-docs.mozilla.org/code-quality/coding-style/coding_style_cpp.html)、[WebKit](https://webkit.org/code-style-guidelines/) 等其他知名编程规范进行比较,选出一种或是基于他们归纳出一个你认为最合理的编程规范,编写对应的 `.clang-format``.clang-tidy` 文件,并在以后坚持使用下去!~~(就助教来说更加偏好 LLVM,毕竟没有人会比编译器更懂语言)~~
319+
- 将 [LLVM Coding Standards](https://releases.llvm.org/14.0.0/docs/CodingStandards.html) 与 [GNU](https://www.gnu.org/prep/standards/standards.html)、[Google](https://google.github.io/styleguide/)、[Chromium](https://chromium.googlesource.com/chromium/src/+/HEAD/styleguide/c++/c++-dos-and-donts.md)、[Microsoft](https://docs.microsoft.com/zh-cn/dotnet/csharp/fundamentals/coding-style/coding-conventions)、[Mozilla](https://firefox-source-docs.mozilla.org/code-quality/coding-style/coding_style_cpp.html)、[WebKit](https://webkit.org/code-style-guidelines/) 等其他知名编程规范进行比较,选出一种或是基于他们归纳出一个你认为最合理的编程规范,编写对应的 `.clang-format``.clang-tidy` 文件,并在以后坚持使用下去!~~(就助教来说更加偏好 LLVM,毕竟没有人会比编译器更懂语言)~~
320320
8. 改进这个实验模板(欢迎 PR!)。
321321
9. Do what you want to do。
322322
323323
## 你可能会感兴趣的
324324
325325
- [GNU Bison - The Yacc-compatible Parser Generator](https://www.gnu.org/software/bison/manual/)
326-
- [FindBISON — CMake 3.18.6 Documentation](https://cmake.org/cmake/help/v3.18/module/FindBISON.html)
327-
- [llvm::json](https://github.com/llvm/llvm-project/blob/llvmorg-11.0.1/llvm/include/llvm/Support/JSON.h)
328-
- 该文件同样位于 debian:11 中 [llvm-dev](https://packages.debian.org/bullseye/devel/llvm-dev) 包的 </usr/include/llvm/Support/JSON.h>
326+
- [FindBISON — CMake 3.13.5 Documentation](https://cmake.org/cmake/help/v3.13/module/FindBISON.html)
327+
- [llvm::json](https://github.com/llvm/llvm-project/blob/llvmorg-14.0.6/llvm/include/llvm/Support/JSON.h)
328+
- 该文件同样位于 debian:bookworm 中 [llvm-dev](https://packages.debian.org/bookworm/devel/llvm-dev) 包的 </usr/include/llvm/Support/JSON.h>

tester/CMakeLists.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ foreach(_test lexer-0)
2828
${_test}
2929
PROPERTIES
3030
ENVIRONMENT
31-
"CPATH=${CMAKE_SOURCE_DIR}/librarian:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LD_LIBRARY_PATH}"
31+
"CPATH=${CMAKE_SOURCE_DIR}/librarian/include:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LD_LIBRARY_PATH}"
3232
)
3333
endforeach()
3434

@@ -44,7 +44,7 @@ foreach(_test lexer-1 lexer-2 lexer-3)
4444
${_test}
4545
PROPERTIES
4646
ENVIRONMENT
47-
"CPATH=${CMAKE_SOURCE_DIR}/librarian:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LD_LIBRARY_PATH}"
47+
"CPATH=${CMAKE_SOURCE_DIR}/librarian/include:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LD_LIBRARY_PATH}"
4848
)
4949
endforeach()
5050

@@ -61,7 +61,7 @@ foreach(_test parser-0)
6161
${_test}
6262
PROPERTIES
6363
ENVIRONMENT
64-
"CPATH=${CMAKE_SOURCE_DIR}/librarian:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LD_LIBRARY_PATH}"
64+
"CPATH=${CMAKE_SOURCE_DIR}/librarian/include:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LD_LIBRARY_PATH}"
6565
)
6666
endforeach()
6767

@@ -77,7 +77,7 @@ foreach(_test parser-1 parser-2 parser-3)
7777
${_test}
7878
PROPERTIES
7979
ENVIRONMENT
80-
"CPATH=${CMAKE_SOURCE_DIR}/librarian:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LD_LIBRARY_PATH}"
80+
"CPATH=${CMAKE_SOURCE_DIR}/librarian/include:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LD_LIBRARY_PATH}"
8181
)
8282
endforeach()
8383

@@ -93,7 +93,7 @@ foreach(_test benchmark_generator_and_optimizer_0)
9393
${_test}
9494
PROPERTIES
9595
ENVIRONMENT
96-
"CPATH=${CMAKE_SOURCE_DIR}/librarian:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LD_LIBRARY_PATH}"
96+
"CPATH=${CMAKE_SOURCE_DIR}/librarian/include:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LD_LIBRARY_PATH}"
9797
)
9898
endforeach()
9999

@@ -109,6 +109,6 @@ foreach(_test benchmark_generator_and_optimizer_1)
109109
${_test}
110110
PROPERTIES
111111
ENVIRONMENT
112-
"CPATH=${CMAKE_SOURCE_DIR}/librarian:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian:$ENV{LD_LIBRARY_PATH}"
112+
"CPATH=${CMAKE_SOURCE_DIR}/librarian/include:$ENV{CPATH};LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LIBRARY_PATH};LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/librarian/lib:$ENV{LD_LIBRARY_PATH}"
113113
)
114114
endforeach()

tester/function_test2020/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ foreach(mainfile ${mains})
55
add_executable(sysu-tester-function_test2020_${mainname} ${mainfile})
66
target_link_libraries(sysu-tester-function_test2020_${mainname} sysy)
77
target_include_directories(sysu-tester-function_test2020_${mainname}
8-
PRIVATE ${CMAKE_SOURCE_DIR}/librarian)
8+
PRIVATE ${CMAKE_SOURCE_DIR}/librarian/include)
99
install(TARGETS sysu-tester-function_test2020_${mainname})
1010
endforeach()

0 commit comments

Comments
 (0)