# compiler-lab-24fall **Repository Path**: xzxg001/compiler-lab-24fall ## Basic Information - **Project Name**: compiler-lab-24fall - **Description**: 湖南大学信息科学与工程学院计科拔尖班2024-2025学年秋季学期编译系统课程实验 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: huawei - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 18 - **Created**: 2024-11-12 - **Last Updated**: 2025-01-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 实验说明 请 fork 此 `repo` 到自己的仓库下,随后在自己的仓库中完成实验,请确保自己的 `repo` 为 `Private` 。 ### 实验环境 华为版实验在 Orange Pi Kunpeng Pro 板上进行,环境配置请参阅 Lab 0。 其他的具体搭建要求,可参考[实验操作指南](./%E7%BC%96%E8%AF%91%E5%8E%9F%E7%90%86%E5%AE%9E%E9%AA%8Cgitee%E5%B9%B3%E5%8F%B0%E6%8C%87%E5%8D%97.md) ### 目前已布置的实验 - [Lab 0](/Documentations/lab0/README.md) - [Lab 1](/Documentations/lab1/README.md) - [Lab 2](/Documentations/lab2/README.md) - [Lab 3](/Documentations/lab3/README.md) - [Lab 4](/Documentations/lab4/README.md) - [Lab 5](/Documentations/lab5/README.md) - [Lab 6](/Documentations/lab6/README.md) - [Lab 7](/Documentations/lab7/README.md) 由于一些原因,华为版实验时间较紧,以上实验须在 11 月 27 日前完成。验收将于第 12 周,与做普通版实验的同学一起进行,一起验收 7 个实验。 ### git 的使用 可以查看[git使用教程](./Documentations/git.md) 推荐同学们通过搜索引擎和相互交流学习掌握git这个工具。 ### 有关实验项目的疑问 推荐在 issues 新建,并按照 markdown 格式进行编写。 需要注明: `问题范围`:如 `lab 1`,`项目的同步`等 `问题简述`: 问题的主要描述,如:实验代码运行时报错;必要时可提供截图 `问题详细描述`:使用的平台,问题的触发方式,自己尝试的操作等;必要时可提供截图 `其他信息`:其他可用的信息,例如:与个人有关,可以提供下联系方式(推荐邮箱,注意保护个人隐私) 有其他问题也可以发送邮件至助教邮箱(详见引言 PPT)。 ### FAQ: How to merge upstream remote branches In brief, you need another alias for upstream repository (we assume you are now in your local copy of forked repository on Gitlab): ``` (shell) $ git remote add upstream [project url] ``` Then try to merge remote commits to your local repository: ``` (shell) $ git pull upstream master ``` Then synchronize changes to your forked remote repository: ``` (shell) $ git push origin master ``` ### 致谢 本实验项目参考了 USTC 2020年秋季学期编译原理实验项目,特此感谢。