Closed GoogleCodeExporter closed 8 years ago
D'oh. That's an issue caused by the space in the path of your directory
structure. You're building in a directory
named "Open Source", and that space is messing up part of your gcc command-line
arguments (specifically
one of the "-L" arguments).
I will fix this in UE itself. But until then, here are two work-arounds (just
do one of them):
1. Rename your "Open Source" directory so that it doesn't have a space
2. Change update-engine/XcodeConfigs/subconfig/CodeCoverage.xcconfig like this:
Index: XcodeConfigs/subconfig/CodeCoverage.xcconfig
===================================================================
--- XcodeConfigs/subconfig/CodeCoverage.xcconfig (revision 38)
+++ XcodeConfigs/subconfig/CodeCoverage.xcconfig (working copy)
@@ -16,5 +16,5 @@
GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES
GCC_GENERATE_TEST_COVERAGE_FILES = YES
OTHER_LDFLAGS = $(OTHER_LDFLAGS) -lgcov
-LIBRARY_SEARCH_PATHS = $(LIBRARY_SEARCH_PATHS)
$(SRCROOT)/externals/google-toolbox-for-
mac/TigerGcov
+LIBRARY_SEARCH_PATHS = $(LIBRARY_SEARCH_PATHS)
"$(SRCROOT)/externals/google-toolbox-for-
mac/TigerGcov"
(i.e., you just need to quote that one path)
Original comment by dev...@gmail.com
on 30 Sep 2008 at 12:10
Thanks, I added the quotes and now it's building fine.
You would think that in 2008 spaces in a path would not be an issue :-)
Original comment by philippe...@gmail.com
on 30 Sep 2008 at 12:21
"svn up" or checkout the code again and you should get a version w/ the fix.
Should work now.
Original comment by dev...@gmail.com
on 30 Sep 2008 at 12:22
Original issue reported on code.google.com by
philippe...@gmail.com
on 29 Sep 2008 at 11:56