Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-12-15 | Resolves: rhbz#767708 avoid SIGBUS writing to overcommitted mmaped diskspace | Stephan Bergmann | 1 | -2/+8 | |
2011-12-13 | Fix for fdo43460 Part IV getLength to isEmpty | Olivier Hallot | 2 | -3/+3 | |
Part IV Module basic (small fix per demand from Ivan Timofeev) binaryurp bridges | |||||
2011-12-11 | I don't see NO_BSYMBOLIC being used anywhere | Tor Lillqvist | 4 | -4/+0 | |
2011-11-30 | catch by constant reference | Takeshi Abe | 7 | -17/+17 | |
2011-11-27 | remove precompiled_xxx.hxx/cxx | Norbert Thiebaud | 2 | -180/+0 | |
2011-11-27 | remove include of pch header in bridge | Norbert Thiebaud | 100 | -194/+0 | |
2011-11-27 | remove PCH support in dmake-module | Norbert Thiebaud | 1 | -7/+0 | |
2011-11-24 | Use RTLD_DEFAULT on Android | Tor Lillqvist | 1 | -0/+24 | |
dlopen()ing NULL (the main program) and dlsym()ing on that handle does not work on Android as in GNU/Linux. So don't bother with that, just call dlsym(RTLD_DEFAULT, symbol) instead. But, it doesn't help, it won't find the type_infos anyway, as they are weak symbols and the dlsym() at least in Android 4.0 does not like weak symbols, "Symbol is not global." So the fallback branch that dynamically generates a type_info, which normally should get used only for inter-process UNO (and thus presumably never on Android) is taken instead. But, that didn't work either at least with NDK r7 thanks to a bug in its libgnustl_shared.so. But we now patch that at run-time in android_main() in sal/osl/android/jni/lo-bootstrap.c. Are we having fun yet? | |||||
2011-11-21 | Don't use USE_DOUBLE_MMAP on Android | Tor Lillqvist | 2 | -3/+8 | |
2011-11-17 | Let's try using the gcc3_linux_arm code for Android, too | Tor Lillqvist | 2 | -2/+3 | |
2011-11-17 | Enforce a "lib" prefix for UNO components for Android | Tor Lillqvist | 3 | -4/+4 | |
This commit for the old build system. (Don't bother for components not relevant for Android.) The Android package installer (as invoked through "adb install", from "ant debug install") silently ignores native libraries in app packages (.apk files) whose names don't start with "lib" and end with ".so". The package builder (as invoked through "ant debug") in the SDK gladly includes also thusly named native libraries in the .apk, though. Yay for consistency. | |||||
2011-11-14 | fix mangled indent | Caolán McNamara | 2 | -29/+28 | |
2011-11-12 | Crack to just make this compile for iOS device | Tor Lillqvist | 3 | -11/+433 | |
2011-11-11 | Missing #endif | Tor Lillqvist | 1 | -0/+2 | |
2011-11-11 | Add the ARM variant | Tor Lillqvist | 1 | -1/+72 | |
2011-10-19 | Adapted numbering of reordered asm parameters. | Stephan Bergmann | 1 | -8/+8 | |
2011-10-18 | Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on ↵ | Stephan Bergmann | 1 | -3/+2 | |
Linux x86_64). | |||||
2011-10-17 | Mark ecx register as clobbered | Kristian Rietveld | 3 | -3/+3 | |
The inline assembly code executes a function call and functions are free to use eax, ecx and edx without preservation. We must thus mark ecx as a clobber register. | |||||
2011-09-29 | Make the C++/UNO bridge compile against the MacOSX 10.7 SDK | Stephan Bergmann | 1 | -1/+64 | |
Old work in progress by sberg, committed by tml. | |||||
2011-09-22 | just silence the auto_ptr deprecations in isolation | Caolán McNamara | 4 | -0/+22 | |
2011-09-21 | OSL_TRACE: Remove trailing newlines | Thomas Arnhold | 3 | -6/+6 | |
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines | |||||
2011-09-12 | sb140: #i117295# fix previous fix | Stephan Bergmann | 2 | -4/+2 | |
2011-09-12 | sb140: #i117295# removed obsolete LEAK_STATIC_DATA defines | Stephan Bergmann | 20 | -79/+0 | |
2011-09-09 | sb140: #i117295# use rtl::Static | Stephan Bergmann | 24 | -374/+95 | |
2011-09-06 | what happens if we try and do it right ? | Caolán McNamara | 2 | -19/+8 | |
2011-08-24 | add missing depends on br_cppuno_shared for various archs | Rene Engelhard | 1 | -6/+6 | |
2011-08-22 | Drop OS/2 lines | Tor Lillqvist | 1 | -1/+0 | |
2011-08-21 | Use prefixed name for uno_initEnvironment() for iOS | Tor Lillqvist | 1 | -0/+8 | |
2011-08-17 | cppcheck: remove assigned but unused variable | Takeshi Abe | 1 | -1/+0 | |
2011-08-14 | Add codeSnippet debugging output when dbglevel>1 | Tor Lillqvist | 1 | -0/+6 | |
2011-08-14 | Add codeSnippet debugging output when dbglevel>1 | Tor Lillqvist | 1 | -0/+12 | |
2011-08-14 | Start of C++/UNO bridge for iOS simulator and device | Tor Lillqvist | 8 | -0/+2011 | |
Unlikely to work yet, but at least builds for the simulator. We can not use dynamic code generation on iOS, so we use a fixed set of code snippets, genertated by a Perl script. Experimentation seems to indicate that a relatively small set of static code snippets should be enough in simple use cases with no extensions (that we can't really support on iOS anyway) and stuff. Except for the static set of snippets the code mostly is, or will be, an ifdefified combination of the gcc3_linux_arm and gcc3_macosx_intel code. The ABI on iOS ARM devices should be quite close to that on Linux ARM, knock on wood. | |||||
2011-08-14 | Add some comments | Tor Lillqvist | 1 | -0/+3 | |
2011-08-11 | Avoid throw in destructor | Julien Nabet | 1 | -1/+2 | |
2011-08-04 | YES->TRUE | Caolán McNamara | 3 | -3/+3 | |
2011-08-04 | Fix segmentation fault when linking -mavx on new CPUs is enabled by ↵ | Tomáš Chvátal | 3 | -0/+18 | |
explicitly adding -mno-avx to CXXFLAGS. | |||||
2011-08-03 | Revert adding -mno-avx to CXXFLAGS, not universally supported | Caolán McNamara | 3 | -3/+3 | |
This reverts commit bf85809783ba11c9018c03f5a26508fa856ff3f8. | |||||
2011-08-03 | Fix segmentation fault when linking -mavx on new CPUs is enabled by ↵ | Tomáš Chvátal | 3 | -3/+3 | |
explicitly adding -mno-avx to CXXFLAGS. | |||||
2011-07-12 | Remove component_getImplementationEnvironment | Matúš Kukan | 5 | -28/+0 | |
2011-06-03 | Drop %_EXT% which was always empty | Tor Lillqvist | 1 | -10/+10 | |
2011-05-03 | Change <file>.toURL() to <file>.toURI().toURL() | Julien Nabet | 1 | -1/+1 | |
2011-04-21 | Easyhack: Add visibility markup to all component_get* functions | Julien Nabet | 4 | -8/+8 | |
2011-04-18 | Remove OS/2 support. | Francois Tigeot | 7 | -2432/+0 | |
2011-04-07 | WaE: tweak for simple-minder compilers | Caolán McNamara | 1 | -3/+1 | |
2011-03-18 | Merge remote-tracking branch 'origin/integration/dev300_m101' | Jan Holesovsky | 56 | -10296/+43 | |
Conflicts: bridges/source/remote/urp/urp_environment.cxx bridges/source/remote/urp/urp_propertyobject.cxx bridges/source/remote/urp/urp_reader.cxx remotebridges/source/factory/bridgefactory.cxx stoc/source/corereflection/crefl.cxx stoc/source/javavm/javavm.cxx stoc/source/simpleregistry/simpleregistry.cxx | |||||
2011-03-12 | OSL_TRACE: Use format string | Thomas Arnhold | 2 | -7/+7 | |
2011-03-12 | Move OSL_ENSURE(0,...) to OSL_FAIL(...) | Thomas Arnhold | 1 | -1/+1 | |
2011-03-12 | Move OSL_ENSURE(0,...) to OSL_FAIL(...) | Thomas Arnhold | 22 | -61/+57 | |
2011-03-12 | Remove unnecessary brackets | Thomas Arnhold | 1 | -2/+2 | |
2011-03-12 | Move OSL_ENSURE(false,...) to OSL_FAIL(...) | Thomas Arnhold | 1 | -2/+1 | |