Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External 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
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
8726a422
Commit
8726a422
authored
12 years ago
by
Jo-Philipp Wich
Browse files
Options
Downloads
Patches
Plain Diff
do not pass optimization flags in HOST_CPPFLAGS (#12153)
SVN-Revision: 33351
parent
56dbeb78
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/host-build.mk
+1
-1
1 addition, 1 deletion
include/host-build.mk
rules.mk
+2
-1
2 additions, 1 deletion
rules.mk
with
3 additions
and
2 deletions
include/host-build.mk
+
1
−
1
View file @
8726a422
...
...
@@ -47,7 +47,7 @@ endef
HOST_CONFIGURE_VARS
=
\
CC
=
"
$(
HOSTCC
)
"
\
CFLAGS
=
"
$(
HOST_CFLAGS
)
"
\
CPPFLAGS
=
"
$(
HOST_CFLAGS
)
"
\
CPPFLAGS
=
"
$(
HOST_C
PP
FLAGS
)
"
\
LDFLAGS
=
"
$(
HOST_LDFLAGS
)
"
\
SHELL
=
"
$(
BASH
)
"
...
...
This diff is collapsed.
Click to expand it.
rules.mk
+
2
−
1
View file @
8726a422
...
...
@@ -173,7 +173,8 @@ PKG_CONFIG:=$(STAGING_DIR_HOST)/bin/pkg-config
export
PKG_CONFIG
HOSTCC
:=
gcc
HOST_CFLAGS
:=
-O2 -I
$(
STAGING_DIR_HOST
)
/include
HOST_CPPFLAGS
:=
-I
$(
STAGING_DIR_HOST
)
/include
HOST_CFLAGS
:=
-O2
$(
HOST_CPPFLAGS
)
HOST_LDFLAGS
:=
-L
$(
STAGING_DIR_HOST
)
/lib
TARGET_CC
:=
$(
TARGET_CROSS
)
gcc
...
...
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