| Summary: | dev-util/boost-build-1.52.0-r1 - x86_64-pc-linux-gnu-gcc: error: [>>> <<<]: No such file or folder | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Alexandre <pums974> |
| Component: | Current packages | Assignee: | C++ Team [disbanded] <cpp+disabled> |
| Status: | RESOLVED INVALID | ||
| Severity: | normal | CC: | pums974, tomwij |
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | AMD64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Alexandre
2012-11-11 20:55:26 UTC
I had the same:
./bootstrap/jam0 -f build.jam --toolset=cc --toolset-root= -d+2 --without-python clean
./bootstrap/jam0 -f build.jam --toolset=cc --toolset-root= -d+2 --without-python
[MKDIR] bin.linuxx86_64
mkdir "bin.linuxx86_64"
[COMPILE] bin.linuxx86_64/b2
"x86_64-pc-linux-gnu-gcc" -o bin.linuxx86_64/b2 "-DNDEBUG" "-DOPT_HEADER_CACHE_EXT" "-DOPT_GRAPH_DEBUG_EXT" "-DOPT_SEMAPHORE" "-DOPT_AT_FILES" "-DOPT_DEBUG_PROFILE" "-DOPT_FIX_TARGET_VARIABLES_EXT" "-DOPT_IMPROVED_PATIENCE_EXT" "-DYYSTACKSIZE=5000" "command.c" "compile.c" "constants.c" "debug.c" "function.c" "glob.c" "hash.c" "hcache.c" "headers.c" "hdrmacro.c" "jam.c" "jambase.c" "jamgram.c" "lists.c" "make.c" "make1.c" "mem.c" "object.c" "option.c" "output.c" "parse.c" "regexp.c" "rules.c" "scan.c" "search.c" "subst.c" "w32_getreg.c" "timestamp.c" "variable.c" "modules.c" "strings.c" "filesys.c" "builtins.c" "pwd.c" "class.c" "native.c" "md5.c" "modules/set.c" "modules/path.c" "modules/regex.c" "modules/property-set.c" "modules/sequence.c" "modules/order.c" "execunix.c" "fileunix.c" "pathunix.c" ""
x86_64-pc-linux-gnu-gcc: error: : No such file or directory
...skipped bjam for lack of b2...
...failed updating 1 target...
But it worked fine on 2nd try.
I'm repeatedly trying since 2 weeks. I never been able to emerge any version >= 1.50 (In reply to comment #2) > I'm repeatedly trying since 2 weeks. > I never been able to emerge any version >= 1.50 And always with the same error. (In reply to comment #3) > (In reply to comment #2) > > I'm repeatedly trying since 2 weeks. > > I never been able to emerge any version >= 1.50 > > And always with the same error. Well, comment 1 suggests a parallel make/ccache problem. Remove the trailing space from your CFLAGS. I tried without the trailing space, ccache and in with -j1 for MAKEOPTS and EMERGE. I still got the same problem. (In reply to comment #0) > LDFLAGS="-Wl,-O1 -Wl,--as-needed " ^^ is most likely the cause for this > "-Wl,--as-needed" "" "-L/usr/lib" "-lpython2.7" ^^ so it is not the trailing space in CFLAGS but the one in LDFLAGS. ... "-Wl,--as-needed" "" "-L/usr/lib" "-lpython2.7" ... It inserts "" there. What should have been in its place? Oh I see. That's it ! Thanks guys. Tip: Next time you report a bug, please add LC_ALL=C in front of your emerge commands so we get an English build log, thanks in advance. OK, I'll keep that in mind. Thank you. |