Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Bug 857: GlueGen produces erroneous file URI on Windows, which breaks ↵ | Sven Gothel | 2013-10-18 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Netbeans's JarURLStreamHandler - 'URL IOUtil.toURL(URI)' - Needs to encode the file-path portion on Windows(*) if exists. The file-path here shall only be encoded as follows: - backslash -> slash - ensure starting with slash (*) We perform above action for all OS, if 'false == File.separator.equals("/")' - Added high verbosity in DEBUG mode to easy debugging for future cases .. - Cleanup URI/URL unit tests, i.e. split URLCompositionTest into: - TestIOUtilURICompose - TestIOUtilURIHandling (Now covers Bug 857 as well) - TestUrisWithAssetHandler - TestURIQueryProps Tested all unit tests manually on GNU/Linux and Windows w/ JRE 7u45 | ||||
* | Bump 7u45 | Sven Gothel | 2013-10-18 | 1 | -2/+2 |
| | |||||
* | Bump to JDK/JRE 7u40. | Sven Gothel | 2013-09-19 | 1 | -2/+2 |
| | |||||
* | Scripts: Use a local hostname for JOGAMP_JAR_CODEBASE for security testing | Sven Gothel | 2013-06-21 | 1 | -2/+2 |
| | |||||
* | Scripts: Windows java run: Use 6u45 | Sven Gothel | 2013-06-20 | 1 | -2/+2 |
| | |||||
* | windows scripts: bump to 6u35 | Sven Gothel | 2012-09-07 | 1 | -2/+2 |
| | |||||
* | win make scripts - bump to 6u30 | Sven Gothel | 2011-12-21 | 1 | -2/+2 |
| | |||||
* | Bump to 6u29 | Sven Gothel | 2011-12-01 | 1 | -2/+2 |
| | |||||
* | GlueGen proper size / alignment of primitive and compound types usage [2/2] ↵ | Sven Gothel | 2011-07-21 | 1 | -0/+17 |
- Fin MachineDesction == MD MD.StaticConfig: - enum for all supported static configs (ID -> MD) - verified at runtime: test runtime queried-MD versus static-MD, hard fail if not compatible (size/alignment) SizeThunk primitive sizes: - Add notion of fixed native size (eg. int64_t) and otherwise (eg. long) java struct 'wrappers' code generation: - single class using size/offset arrays of all MachineDescription configurations - at runtime the array idx is queried in static block - type aligment for not fixed-native-size types (SizeThunk, undef long/int) via StructAccessor junit test: - add float test - fix native code - add java (create, write) -> native (verify) test works (tested) on: linux 32/64 and windows 32/64 |