diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2011-01-10 21:04:17 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2011-01-10 21:04:17 +0000 |
| commit | 2ba3f84ab559da02a11aa000b3cecb3b3668af61 (patch) | |
| tree | 266f450b512f607ec54d54af4fa8c13fdbe7ef91 /default.bld | |
| parent | ea18007633b31901f2ae275cc0576c3f7ce99fc9 (diff) | |
| parent | 3611f253f6fdfa4954d374ab85ddaa7f799c130c (diff) | |
| download | libbu++-2ba3f84ab559da02a11aa000b3cecb3b3668af61.tar.gz libbu++-2ba3f84ab559da02a11aa000b3cecb3b3668af61.tar.bz2 libbu++-2ba3f84ab559da02a11aa000b3cecb3b3668af61.tar.xz libbu++-2ba3f84ab559da02a11aa000b3cecb3b3668af61.zip | |
Merged in the core branch. This is a major update that fixes many things, and
changes many others, including source files that were deleted and renamed.
Before doing this update, I reccomend a full clean, or even a fresh checkout.
Things to note, most outstanding about this update:
- Bu::Socket was changed to Bu::TcpSocket and the default mode is blocking.
- All templatized container classes are SharedCore now, which is good, but
SharedCore is inherently non-reentrant safe. However, all SharedCore classes
have a "clone" function that return a non-shared copy of the object, safe for
passing into a reentrant safe function accessing shared memory.
Diffstat (limited to '')
| -rw-r--r-- | default.bld | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/default.bld b/default.bld index 857e988..50baefb 100644 --- a/default.bld +++ b/default.bld | |||
| @@ -82,6 +82,22 @@ target "viewcsv" | |||
| 82 | } | 82 | } |
| 83 | 83 | ||
| 84 | // | 84 | // |
| 85 | // This shouldn't be. Basically, if you set a property on a top level target | ||
| 86 | // that has children it seems like the items should apply to the children. | ||
| 87 | // I'm honestly not 100% sure what the policy should be yet, but this seems like | ||
| 88 | // I shouldn't have to do it this way. | ||
| 89 | // | ||
| 90 | target "src/tools/myriadfs.o" | ||
| 91 | { | ||
| 92 | CXXFLAGS += "-D_FILE_OFFSET_BITS=64"; | ||
| 93 | } | ||
| 94 | |||
| 95 | target "myriadfs" | ||
| 96 | { | ||
| 97 | LDFLAGS += "-lfuse"; | ||
| 98 | } | ||
| 99 | |||
| 100 | // | ||
| 85 | // General Tests | 101 | // General Tests |
| 86 | // | 102 | // |
| 87 | 103 | ||
