Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
7af4eb01
Commit
7af4eb01
authored
13 years ago
by
Priit Laes
Committed by
John Koleszar
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix build under Estonian locale
Change-Id: Ifb536403ef302b597864eae1d05aa9e2bb15d4c7
parent
6b66c01c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build/make/gen_asm_deps.sh
+1
-1
1 addition, 1 deletion
build/make/gen_asm_deps.sh
libs.mk
+3
-3
3 additions, 3 deletions
libs.mk
with
4 additions
and
4 deletions
build/make/gen_asm_deps.sh
+
1
−
1
View file @
7af4eb01
...
...
@@ -42,7 +42,7 @@ done
[
-n
"
$srcfile
"
]
||
show_help
sfx
=
${
sfx
:-
asm
}
includes
=
$(
egrep
-i
"include +
\"
?+[a-z0-9_/]+
\.
${
sfx
}
"
$srcfile
|
includes
=
$(
LC_ALL
=
C
egrep
-i
"include +
\"
?+[a-z0-9_/]+
\.
${
sfx
}
"
$srcfile
|
perl
-p
-e
"s;.*?([a-z0-9_/]+.
${
sfx
}
).*;
\1
;"
)
#" restore editor state
for
inc
in
${
includes
}
;
do
...
...
This diff is collapsed.
Click to expand it.
libs.mk
+
3
−
3
View file @
7af4eb01
...
...
@@ -285,17 +285,17 @@ OFFSET_PATTERN:='^[a-zA-Z0-9_]* EQU'
ifeq
($(filter icc gcc,$(TGT_CC)), $(TGT_CC))
$(BUILD_PFX)asm_com_offsets.asm
:
$(BUILD_PFX)$(VP8_PREFIX)common/asm_com_offsets.c.S
grep
$(
OFFSET_PATTERN
)
$<
|
tr
-d
'$$\#'
$(
ADS2GAS
)
>
$@
LC_ALL
=
C
grep
$(
OFFSET_PATTERN
)
$<
|
tr
-d
'$$\#'
$(
ADS2GAS
)
>
$@
$(BUILD_PFX)$(VP8_PREFIX)common/asm_com_offsets.c.S
:
$(VP8_PREFIX)common/asm_com_offsets.c
CLEAN-OBJS
+=
$(
BUILD_PFX
)
asm_com_offsets.asm
$(
BUILD_PFX
)$(
VP8_PREFIX
)
common/asm_com_offsets.c.S
$(BUILD_PFX)asm_enc_offsets.asm
:
$(BUILD_PFX)$(VP8_PREFIX)encoder/asm_enc_offsets.c.S
grep
$(
OFFSET_PATTERN
)
$<
|
tr
-d
'$$\#'
$(
ADS2GAS
)
>
$@
LC_ALL
=
C
grep
$(
OFFSET_PATTERN
)
$<
|
tr
-d
'$$\#'
$(
ADS2GAS
)
>
$@
$(BUILD_PFX)$(VP8_PREFIX)encoder/asm_enc_offsets.c.S
:
$(VP8_PREFIX)encoder/asm_enc_offsets.c
CLEAN-OBJS
+=
$(
BUILD_PFX
)
asm_enc_offsets.asm
$(
BUILD_PFX
)$(
VP8_PREFIX
)
encoder/asm_enc_offsets.c.S
$(BUILD_PFX)asm_dec_offsets.asm
:
$(BUILD_PFX)$(VP8_PREFIX)decoder/asm_dec_offsets.c.S
grep
$(
OFFSET_PATTERN
)
$<
|
tr
-d
'$$\#'
$(
ADS2GAS
)
>
$@
LC_ALL
=
C
grep
$(
OFFSET_PATTERN
)
$<
|
tr
-d
'$$\#'
$(
ADS2GAS
)
>
$@
$(BUILD_PFX)$(VP8_PREFIX)decoder/asm_dec_offsets.c.S
:
$(VP8_PREFIX)decoder/asm_dec_offsets.c
CLEAN-OBJS
+=
$(
BUILD_PFX
)
asm_dec_offsets.asm
$(
BUILD_PFX
)$(
VP8_PREFIX
)
decoder/asm_dec_offsets.c.S
else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment