Changeset d231a54 in mainline for configure.sh
- Timestamp:
- 2025-02-24T11:12:39Z (22 hours ago)
- Branches:
- master
- Parents:
- be62ebc
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2025-02-24 10:46:00)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2025-02-24 11:12:39)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.sh
rbe62ebc rd231a54 110 110 PLATFORM=`sed -n '/^PLATFORM\b/p' Makefile.config | sed 's:[^=]*= ::'` 111 111 MACHINE=`sed -n '/^MACHINE\b/p' Makefile.config | sed 's:[^=]*= ::'` 112 COMPILER=`sed -n '/^COMPILER\b/p' Makefile.config | sed 's:[^=]*= ::'` 112 113 113 114 cross_target="$PLATFORM" … … 119 120 fi 120 121 122 if [ "$COMPILER" = 'clang' ]; then 123 cross_target="${cross_target}_clang" 124 fi 125 121 126 cross_def="${SOURCE_DIR}/meson/cross/${cross_target}" 122 127 cc_arch=`sed -n "s:cc_arch = '\(.*\)':\1:p" "$cross_def"` 123 128 124 compname="$cc_arch-helenos-gcc" 129 if [ "$COMPILER" = 'clang' ]; then 130 compname="$cc_arch-helenos-clang" 131 else 132 compname="$cc_arch-helenos-gcc" 133 fi 125 134 unset compprefix 126 135
Note:
See TracChangeset
for help on using the changeset viewer.