# aop **Repository Path**: a_boys/aop ## Basic Information - **Project Name**: aop - **Description**: 匿名函数 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-06 - **Last Updated**: 2025-12-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 编译DLL并复制到项目 进入WSL进行以下操作 编译dll ``` cd ~/ark ``` ``` ./ark.py mingw_x86_64.debug abckit_packages --gn-args="is_standard_system=true abckit_enable=true" ``` 复制dll ``` cp -rf ~/ark/out/mingw_x86_64.debug/arkcompiler/runtime_core/* /mnt/c/Users/stone/source/repos/abc-aop/windows/x64 ``` ``` cp -rf ~/ark/out/mingw_x86_64.debug/thirdparty/zlib/* /mnt/c/Users/stone/source/repos/abc-aop/windows/x64 ``` 复制头文件 ``` cp -rf ~/ark/arkcompiler/runtime_core/libabckit/include /mnt/c/Users/stone/source/repos/abc-aop/thirdparty/ ``` ``` cp -rf ~/ark/arkcompiler/runtime_core/libabckit/src /mnt/c/Users/stone/source/repos/abc-aop/thirdparty/include/libabckit ``` ``` cp -rf ~/ark/arkcompiler/runtime_core/libpandabase /mnt/c/Users/stone/source/repos/abc-aop/thirdparty/include ```