Dockerfile.build.ubuntu22.cross-arm64 2.57 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#/*
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
# * contributor license agreements.  See the NOTICE file distributed with
# * this work for additional information regarding copyright ownership.
# * The OpenAirInterface Software Alliance licenses this file to You under
# * the OAI Public License, Version 1.1  (the "License"); you may not use this file
# * except in compliance with the License.
# * You may obtain a copy of the License at
# *
# *      http://www.openairinterface.org/?page_id=698
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *-------------------------------------------------------------------------------
# * For more information about the OpenAirInterface (OAI) Software Alliance:
# *      contact@openairinterface.org
# */
#---------------------------------------------------------------------
#
# Dockerfile for the Open-Air-Interface BUILD service
24
#   Valid for Ubuntu 22.04 to cross-compile for ARM64
25 26 27 28 29 30 31 32 33 34 35 36
#
#---------------------------------------------------------------------

FROM ran-base:latest as ran-build

RUN rm -Rf /oai-ran
WORKDIR /oai-ran
COPY . .

# build all targets so final targets can be created afterwards
RUN /bin/sh oaienv && \
    cd cmake_targets && \
37
    mkdir -p log ran_build/build ran_build/build-cross && \
38 39 40
    cd ran_build/build && \
    cmake ../../.. -GNinja && \
    echo "====== Start of log for host-tools ======" && \
41
    ninja ldpc_generators generate_T > ../../log/host-tools.txt 2>&1 && \
42 43 44 45
    echo "====== End of log for host-tools ======" && \
    cd ../build-cross/ && \
    cmake ../../.. -GNinja -DCMAKE_TOOLCHAIN_FILE=../../../cmake_targets/cross-arm.cmake -DNATIVE_DIR=../build && \
    echo "====== Start of log for cross-build executables ======" && \
46 47 48 49
    # making always passing so we can analyze the all.txt file
    ninja dlsim ulsim ldpctest polartest smallblocktest nr_pbchsim nr_dlschsim nr_ulschsim nr_dlsim nr_ulsim nr_pucchsim nr_prachsim lte-softmodem nr-softmodem nr-cuup oairu lte-uesoftmodem nr-uesoftmodem params_libconfig coding rfsimulator > ../../log/all.txt 2>&1; \
    # displaying errors and warnings
    egrep -A3 "warning:|error:" ../../log/all.txt || true && \
50 51
    # will fail only if string "errors:" is found
    egrep "error:" -vqz ../../log/all.txt && \
52
    echo "====== End of log for cross-build executables ======"