Repository: incubator-mynewt-core Updated Branches: refs/heads/develop e02bab6c2 -> 7ecd71024
compiler/sim: remove absolute path from cc & as Hard-coding the absolute path for cc & as is not only non-consistent with the other definitions (none use absolute paths), but it is also wrong, gcc-5 can be installed in any location (via homebrew or otherwise). Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/75d3b41f Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/75d3b41f Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/75d3b41f Branch: refs/heads/develop Commit: 75d3b41f4e8bf01e2a27760dfab1aad321a6a091 Parents: 56ae794 Author: Liviu Ionescu <[email protected]> Authored: Thu Jan 19 19:55:46 2017 +0200 Committer: Liviu Ionescu <[email protected]> Committed: Thu Jan 19 19:55:46 2017 +0200 ---------------------------------------------------------------------- compiler/sim/compiler.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/75d3b41f/compiler/sim/compiler.yml ---------------------------------------------------------------------- diff --git a/compiler/sim/compiler.yml b/compiler/sim/compiler.yml index 1fddf4b..5e5e7e5 100644 --- a/compiler/sim/compiler.yml +++ b/compiler/sim/compiler.yml @@ -41,8 +41,8 @@ compiler.flags.base.LINUX: > compiler.ld.flags.LINUX: -lutil # OS X. -compiler.path.cc.DARWIN.OVERWRITE: "/usr/local/bin/gcc-5" -compiler.path.as.DARWIN.OVERWRITE: "/usr/local/bin/gcc-5" +compiler.path.cc.DARWIN.OVERWRITE: "gcc-5" +compiler.path.as.DARWIN.OVERWRITE: "gcc-5" compiler.path.objdump.DARWIN.OVERWRITE: "gobjdump" compiler.path.objcopy.DARWIN.OVERWRITE: "gobjcopy" compiler.flags.base.DARWIN: >
