Skip to content

Commit

Permalink
AWS-LC build on MacOS-14 is currently failing
Browse files Browse the repository at this point in the history
  • Loading branch information
pennyannn committed Aug 21, 2024
1 parent 29a4376 commit 4bba315
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ jobs:
path: .lake
key: ${{ runner.os }}-lake

- name: Setup Go (MacOS)
if: ${{ runner.os == 'macOS' }}
uses: actions/setup-go@v4
with:
go-version: '>=1.18'

- name: Build AWS-LC (MacOS)
if : ${{ runner.os == 'macOS' }}
run: |
Expand Down
24 changes: 17 additions & 7 deletions scripts/build_awslc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,27 @@ set -o xtrace

# Remember where LNSym is
LNSym_DIR=${PWD}
echo $CC
echo $CXX
clang --version
gcc --version

echo ""
echo "Environment variables:"
env

# Install dependencies
brew install ninja golang
# brew install ninja

# Fetching and building AWS-LC
# Fetching AWS-LC
git clone https://github.com/aws/aws-lc.git $HOME/aws-lc --depth 1
cd $HOME/aws-lc; mkdir aws-lc-build; cd aws-lc-build
cmake -GNinja -DKEEP_ASM_LOCAL_SYMBOLS=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ../
ninja
cd $HOME/aws-lc
# Build AWS-LC
mkdir aws-lc-build; cd aws-lc-build
# cmake -GNinja -DKEEP_ASM_LOCAL_SYMBOLS=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ../
cmake -DKEEP_ASM_LOCAL_SYMBOLS=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo ../
# ninja
make

# Move crypto_test to LNSym
cp -f crypto/crypto_test ${LNSym_DIR}/Tests/ELFParser/Data/crypto_test

cd ${LNSym_DIR}

0 comments on commit 4bba315

Please sign in to comment.