Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 73e8025d authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Gerrit Code Review
Browse files

Merge "Use arm instruction set with clang 7.0 LTO"

parents 73c39245 ffb5375c
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -7,6 +7,11 @@ cc_library_static {
        "-Wall",
        "-Werror",
    ],
    arch: {
        arm: {
            instruction_set: "arm",
        },
    },
    proto: {
        type: "lite",
        export_proto_headers: true,
+5 −0
Original line number Diff line number Diff line
@@ -51,6 +51,11 @@ cc_library {
        "-Wall",
        "-Werror",
    ],
    arch: {
        arm: {
            instruction_set: "arm",
        },
    },
    export_include_dirs: localIncludeFiles,
    static_libs: staticLibraries,
    shared_libs: sharedLibraries,
+5 −0
Original line number Diff line number Diff line
@@ -55,6 +55,11 @@ cc_library {
        "-Wno-unused-parameter",
        "-Wno-unused-variable",
    ],
    arch: {
        arm: {
            instruction_set: "arm",
        },
    },
    srcs: sourceFiles,
    export_include_dirs: includeFiles,
    export_static_lib_headers: staticLibraries,
+5 −0
Original line number Diff line number Diff line
@@ -52,6 +52,11 @@ headerLibraries = [
cc_library {
    tags: ["tests"],
    srcs: sourceFiles,
    arch: {
        arm: {
            instruction_set: "arm",
        },
    },
    cflags: ["-DLOG_TAG=\"libdisplay\"",
        "-DTRACE=0",
        "-DATRACE_TAG=ATRACE_TAG_GRAPHICS",
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,11 @@ cc_library_static {
        "-DLOG_TAG=\"libpdx\"",
        "-DTRACE=0",
    ],
    arch: {
        arm: {
            instruction_set: "arm",
        },
    },
    export_include_dirs: ["private"],
    local_include_dirs: ["private"],
    srcs: [
Loading