We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Out-of-source build (objdir=/whatever) would be useful for doing bits with cvise so it can work in parallel.
With /tmp on tmpfs:
/tmp
$ cd $(mktemp -d) && make -C /home/sam/git/dtrace-utils/ objdir=$(pwd) -j1 [...] AR: libcommon.a AR: libport.a AR: libproc.a SHLINK: libdtrace.so SHLINK: libproc-dlmlib.so cp: cannot create hard link 'test/triggers/libproc-dlmlib.so.0.0.0' to '/tmp/tmp.2aI49qXEfR/libproc-dlmlib.so.0.0.0': Invalid cross-device link make: *** [Makerules:24: /tmp/tmp.2aI49qXEfR/libproc-dlmlib.so] Error 1 make: *** Deleting file '/tmp/tmp.2aI49qXEfR/libproc-dlmlib.so'
With both in /tmp:
$ cd $(mktemp -d) && make -C /tmp/dtrace-utils/ objdir=$(pwd) -j1 [...] SHLINK: libdtrace.so SHLINK: libproc-dlmlib.so ln: failed to create symbolic link 'test/triggers/libproc-dlmlib.so.0': File exists make: *** [Makerules:25: /tmp/tmp.Hu7sQqZzMN/libproc-dlmlib.so] Error 1 make: *** Deleting file '/tmp/tmp.Hu7sQqZzMN/libproc-dlmlib.so'
Also, it looks like configure does support --objdir but it also has a bunch of hardcoded build/. Not tried it.
configure
--objdir
build/
The text was updated successfully, but these errors were encountered:
test-triggers--usdt-tst-special.o
No branches or pull requests
Out-of-source build (objdir=/whatever) would be useful for doing bits with cvise so it can work in parallel.
With
/tmp
on tmpfs:With both in
/tmp
:Also, it looks like
configure
does support--objdir
but it also has a bunch of hardcodedbuild/
. Not tried it.The text was updated successfully, but these errors were encountered: