Whats the format for adding multiple search paths in Android.mk makefile?
GNU Makefile uses -I switch. What I know is that I have to go
CFLAGS= -I/usr/include/gtk+-3.0 -I/usr/include/gtkmm-3.0
How would I add those two search paths in an Android make as CFLAGS
This is the part of the Makefile I need to modify to add search paths
Android.mk
include $(CLEAR_VARS)
LOCAL_MODULE := lib_driver_cmd_mt66xx
LOCAL_SHARED_LIBRARIES := libc libcutils
LOCAL_CFLAGS := $(L_CFLAGS)
LOCAL_SRC_FILES := $(WPA_SRC_FILE)
LOCAL_C_INCLUDES := $(WPA_SUPPL_DIR_INCLUDE)
include $(BUILD_STATIC_LIBRARY)
Why am I asking?
I need to add search paths for missing headers in android source
When I build I get the following error
device/orange/klifd/lib_driver_cmd_mt66xx/mediatek_driver_cmd_nl80211.c:12:28: fatal error: driver_nl80211.h: No such file or directory
compilation terminated.
build/core/binary.mk:512: recipe for target '/mnt/workspace/lineage/11.0/out/target/product/klifd/obj/STATIC_LIBRARIES/lib_driver_cmd_mt66xx_intermediates/mediatek_driver_cmd_nl80211.o' failed
make: *** [/mnt/workspace/lineage/11.0/out/target/product/klifd/obj/STATIC_LIBRARIES/lib_driver_cmd_mt66xx_intermediates/mediatek_driver_cmd_nl80211.o] Error 1
So I want to add the search paths for driver_nl80211.h
to Android.mk. The headers are in hardware/libhardware_legacy/include/hardware_legacy
.
What would be the format if I want to add extra paths incase they have dependencies like GNU's -I/dir1 -I/dir2
android makefile header include-path
add a comment |
GNU Makefile uses -I switch. What I know is that I have to go
CFLAGS= -I/usr/include/gtk+-3.0 -I/usr/include/gtkmm-3.0
How would I add those two search paths in an Android make as CFLAGS
This is the part of the Makefile I need to modify to add search paths
Android.mk
include $(CLEAR_VARS)
LOCAL_MODULE := lib_driver_cmd_mt66xx
LOCAL_SHARED_LIBRARIES := libc libcutils
LOCAL_CFLAGS := $(L_CFLAGS)
LOCAL_SRC_FILES := $(WPA_SRC_FILE)
LOCAL_C_INCLUDES := $(WPA_SUPPL_DIR_INCLUDE)
include $(BUILD_STATIC_LIBRARY)
Why am I asking?
I need to add search paths for missing headers in android source
When I build I get the following error
device/orange/klifd/lib_driver_cmd_mt66xx/mediatek_driver_cmd_nl80211.c:12:28: fatal error: driver_nl80211.h: No such file or directory
compilation terminated.
build/core/binary.mk:512: recipe for target '/mnt/workspace/lineage/11.0/out/target/product/klifd/obj/STATIC_LIBRARIES/lib_driver_cmd_mt66xx_intermediates/mediatek_driver_cmd_nl80211.o' failed
make: *** [/mnt/workspace/lineage/11.0/out/target/product/klifd/obj/STATIC_LIBRARIES/lib_driver_cmd_mt66xx_intermediates/mediatek_driver_cmd_nl80211.o] Error 1
So I want to add the search paths for driver_nl80211.h
to Android.mk. The headers are in hardware/libhardware_legacy/include/hardware_legacy
.
What would be the format if I want to add extra paths incase they have dependencies like GNU's -I/dir1 -I/dir2
android makefile header include-path
Did you try using -I/dir1 ? what happend?
– arved
Jan 2 at 12:20
are you in the Android.mk I should goLOCAL_CFLAGS := $(L_CFLAGS) -I/dir1
– Bret Joseph
Jan 2 at 12:57
add a comment |
GNU Makefile uses -I switch. What I know is that I have to go
CFLAGS= -I/usr/include/gtk+-3.0 -I/usr/include/gtkmm-3.0
How would I add those two search paths in an Android make as CFLAGS
This is the part of the Makefile I need to modify to add search paths
Android.mk
include $(CLEAR_VARS)
LOCAL_MODULE := lib_driver_cmd_mt66xx
LOCAL_SHARED_LIBRARIES := libc libcutils
LOCAL_CFLAGS := $(L_CFLAGS)
LOCAL_SRC_FILES := $(WPA_SRC_FILE)
LOCAL_C_INCLUDES := $(WPA_SUPPL_DIR_INCLUDE)
include $(BUILD_STATIC_LIBRARY)
Why am I asking?
I need to add search paths for missing headers in android source
When I build I get the following error
device/orange/klifd/lib_driver_cmd_mt66xx/mediatek_driver_cmd_nl80211.c:12:28: fatal error: driver_nl80211.h: No such file or directory
compilation terminated.
build/core/binary.mk:512: recipe for target '/mnt/workspace/lineage/11.0/out/target/product/klifd/obj/STATIC_LIBRARIES/lib_driver_cmd_mt66xx_intermediates/mediatek_driver_cmd_nl80211.o' failed
make: *** [/mnt/workspace/lineage/11.0/out/target/product/klifd/obj/STATIC_LIBRARIES/lib_driver_cmd_mt66xx_intermediates/mediatek_driver_cmd_nl80211.o] Error 1
So I want to add the search paths for driver_nl80211.h
to Android.mk. The headers are in hardware/libhardware_legacy/include/hardware_legacy
.
What would be the format if I want to add extra paths incase they have dependencies like GNU's -I/dir1 -I/dir2
android makefile header include-path
GNU Makefile uses -I switch. What I know is that I have to go
CFLAGS= -I/usr/include/gtk+-3.0 -I/usr/include/gtkmm-3.0
How would I add those two search paths in an Android make as CFLAGS
This is the part of the Makefile I need to modify to add search paths
Android.mk
include $(CLEAR_VARS)
LOCAL_MODULE := lib_driver_cmd_mt66xx
LOCAL_SHARED_LIBRARIES := libc libcutils
LOCAL_CFLAGS := $(L_CFLAGS)
LOCAL_SRC_FILES := $(WPA_SRC_FILE)
LOCAL_C_INCLUDES := $(WPA_SUPPL_DIR_INCLUDE)
include $(BUILD_STATIC_LIBRARY)
Why am I asking?
I need to add search paths for missing headers in android source
When I build I get the following error
device/orange/klifd/lib_driver_cmd_mt66xx/mediatek_driver_cmd_nl80211.c:12:28: fatal error: driver_nl80211.h: No such file or directory
compilation terminated.
build/core/binary.mk:512: recipe for target '/mnt/workspace/lineage/11.0/out/target/product/klifd/obj/STATIC_LIBRARIES/lib_driver_cmd_mt66xx_intermediates/mediatek_driver_cmd_nl80211.o' failed
make: *** [/mnt/workspace/lineage/11.0/out/target/product/klifd/obj/STATIC_LIBRARIES/lib_driver_cmd_mt66xx_intermediates/mediatek_driver_cmd_nl80211.o] Error 1
So I want to add the search paths for driver_nl80211.h
to Android.mk. The headers are in hardware/libhardware_legacy/include/hardware_legacy
.
What would be the format if I want to add extra paths incase they have dependencies like GNU's -I/dir1 -I/dir2
android makefile header include-path
android makefile header include-path
asked Jan 1 at 7:39
Bret JosephBret Joseph
8410
8410
Did you try using -I/dir1 ? what happend?
– arved
Jan 2 at 12:20
are you in the Android.mk I should goLOCAL_CFLAGS := $(L_CFLAGS) -I/dir1
– Bret Joseph
Jan 2 at 12:57
add a comment |
Did you try using -I/dir1 ? what happend?
– arved
Jan 2 at 12:20
are you in the Android.mk I should goLOCAL_CFLAGS := $(L_CFLAGS) -I/dir1
– Bret Joseph
Jan 2 at 12:57
Did you try using -I/dir1 ? what happend?
– arved
Jan 2 at 12:20
Did you try using -I/dir1 ? what happend?
– arved
Jan 2 at 12:20
are you in the Android.mk I should go
LOCAL_CFLAGS := $(L_CFLAGS) -I/dir1
– Bret Joseph
Jan 2 at 12:57
are you in the Android.mk I should go
LOCAL_CFLAGS := $(L_CFLAGS) -I/dir1
– Bret Joseph
Jan 2 at 12:57
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53993823%2fwhats-the-format-for-adding-multiple-search-paths-in-android-mk-makefile%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53993823%2fwhats-the-format-for-adding-multiple-search-paths-in-android-mk-makefile%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Did you try using -I/dir1 ? what happend?
– arved
Jan 2 at 12:20
are you in the Android.mk I should go
LOCAL_CFLAGS := $(L_CFLAGS) -I/dir1
– Bret Joseph
Jan 2 at 12:57