Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  update_highway.sh

  Sprache: Shell
 

#!/bin/bash

# Update third_party/highway to the latest version.

# Usage: (under libaom root directory)
# ./tools/update_highway.sh

set -e

highway_dir="$(pwd)/third_party/highway"
repo_url="https://github.com/google/highway"

git clone --depth 1 "$repo_url" "$highway_dir"

cd "${highway_dir}"

commit_hash=$(git rev-parse HEAD)

# Remove everything except ./hwy
find . -mindepth 1 \
  -not -path "./hwy" \
  -not -path "./hwy/*" \
  -not -name "LICENSE-BSD3" \
  -delete

# Remove tests/ directory
rm -rf hwy/tests/

# Remove markdown files
find . -name "*.md" -delete

# Remove cc files since we build highway header-only
find . -name "*.cc" -delete

# Update the include path
find ./hwy \( -name "*.c" -o -name "*.cc" -o -name "*.h" \) -print0 | \
  xargs -0 sed -i 's/#include "hwy\//#include "third_party\/highway\/hwy\//g'

find ./hwy \( -name "*.c" -o -name "*.cc" -o -name "*.h" \) -print0 | \
  xargs -0 sed -i \
  's/HWY_TARGET_INCLUDE "hwy\//HWY_TARGET_INCLUDE "third_party\/highway\/hwy\//g'

cat > "${highway_dir}/README.libaom" <<EOF
URL: $repo_url

Version: $commit_hash
License: BSD-3-clause clear
License File: LICENSE-BSD3

Description:
Highway is a C++ library that provides portable SIMD/vector intrinsics.

Local Changes:
Remove everything except hwy/ and LICENSE-BSD3
EOF

Messung V0.5 in Prozent
C=94 H=64 G=80

¤ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet am  2026-08-26) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=434850
#Domains=655579