Curtis Vogt

Results 388 comments of Curtis Vogt

I'm configuring via: ``` CC=/usr/bin/gcc CC_FOR_BUILD=/usr/bin/gcc CC_FOR_TARGET=/workspace/destdir/bin/aarch64-apple-darwin20-gcc /workspace/srcdir/gcc-darwin-arm64/configure --prefix=/workspace/destdir --target=aarch64-apple-darwin20 --host=x86_64-linux-musl --build=x86_64-linux-musl --disable-multilib --disable-werror --enable-shared --enable-host-shared --enable-threads=posix --with-sysroot=/workspace/destdir/aarch64-apple-darwin20/sys-root --program-prefix=aarch64-apple-darwin20- --disable-bootstrap ``` Using MacSDK 11.1 (Xcode 12.3 or 12.4) Thanks for...

> recommendation A : drop every configure switch you don't need for some well-explained reason I'll give that a shot. > Where / how are you getting the assembler /...

> Make sure that your 'binutils' tools (as, ld, dsymutil, ar, nm, lipo, strip, ranlib) are properly installed (and actually work) .. a failure in finding something there could trigger...

Any thoughts on why the commit "Darwin, configury : Allow for specification and detection of dsymutil." (2e743ec) seems to trigger the issue?

Not yet unfortunately. Have had other work come up. This is still on my radar though.

My current work around: ```julia julia> using FilePathsBase julia> replace(p::P, args...; kwargs...) where P replace(args...; kwargs...) = Base.replace(args...; kwargs...) replace (generic function with 2 methods) julia> replace(PosixPath("/a/b/c"), "b" => "c")...

> FWIW, I think if we were to support this we'd have the same behaviour as a collection of strings. You mean not treating the path as a string but...

Thanks @rofinn. I probably won't get around to fixing this myself but I wanted to make sure I recorded the issue.

I also encountered this issue. I needed to set `LLVM_VER=3.9.0` and merge https://github.com/JuliaLang/julia/pull/18920, https://github.com/JuliaLang/julia/pull/18910, and https://github.com/JuliaLang/julia/pull/19666. (macOS Sierra 10.12.2)

Since https://github.com/MikeInnes/MacroTools.jl/pull/139 removes the `DataStructures` dependency I'd be okay with moving the ExprTools functionality here entirely as this package is now light with its dependencies. However, I'm not sure MacroTools...