1234567891011121314151617181920212223242526 |
- #!/bin/bash
- # Copyright (c) Contributors to the Open 3D Engine Project.
- # For complete copyright and license terms please see the LICENSE at the root of this distribution.
- #
- # SPDX-License-Identifier: Apache-2.0 OR MIT
- CPU_ARCHITECTURE=$(lscpu | grep Architecture | awk '{print $2}')
- if [ "$CPU_ARCHITECTURE" = "x86_64" ]
- then
- # Note: on x86/x64 platforms, O3DE requires a minimum of SSE 4.1, so we do request this.
- cmake -S temp/src -B temp/build -G "Unix Makefiles" \
- -DCMAKE_BUILD_TYPE=Release \
- -DISA_SSE41=ON \
- || exit $?
- elif [ "$CPU_ARCHITECTURE" = "aarch64" ]
- then
- cmake -S temp/src -B temp/build -G "Unix Makefiles" \
- -DCMAKE_BUILD_TYPE=Release \
- -DISA_NATIVE=ON \
- || exit $?
- fi
- cmake --build temp/build -j 8 || exit $?
|