From 892391763c50226d1cd95d8df0b603e6fc2f4acd Mon Sep 17 00:00:00 2001 From: wangyunlai Date: Wed, 23 Aug 2023 16:16:57 +0800 Subject: [PATCH] install lex yacc on gitpod (#246) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### What problem were solved in this pull request? Problem: gitpod开发环境中没有安装flex和yacc工具 ### What is changed and how it works? 在gitpod中安装flex和bison,以及readline --- .gitpod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 5ba2bf1..416e840 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -5,6 +5,6 @@ github: tasks: - name: install dependencies init: | - sudo apt install cmake -y + sudo apt install cmake flex bison texinfo libreadline-dev -y sudo bash build.sh init - echo -e "\033[32m\nDependency installed successfully\033[0m" \ No newline at end of file + echo -e "\033[32m\nDependency installed successfully\033[0m" -- GitLab