aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add version type and functions:Joseph Hunkeler2020-05-242-312/+117
| | | | | | | | | | | | * struct Version * version_{init,read,free} * version_from() now wraps new functions to return a uint64_t
| * Leave a commented reference to my scratch executable. Tired of rewriting it ↵Joseph Hunkeler2020-05-241-0/+8
| | | | | | | | constantly.
| * Add string functions:Joseph Hunkeler2020-05-242-0/+29
|/ | | | | * isdigit_s() * tolower_s()
* Merge pull request #36 from jhunkeler/messing-aroundJoseph Hunkeler2020-05-217-27/+222
|\ | | | | Version parsing and Darwin bugfix
| * Add newlineJoseph Hunkeler2020-05-211-0/+1
| |
| * Allow updates to the package metadata during the build phaseJoseph Hunkeler2020-05-211-7/+14
| |
| * Handle DarwinJoseph Hunkeler2020-05-211-12/+40
| |
| * Rewrite version_from() to be input agnosticJoseph Hunkeler2020-05-212-8/+144
| |
| * Add strlist_remove()Joseph Hunkeler2020-05-212-0/+23
|/
* Merge pull request #35 from jhunkeler/fix-frameworkJoseph Hunkeler2020-05-081-2/+2
|\ | | | | Fix framework
| * Fix missing end quoteJoseph Hunkeler2020-05-081-2/+2
| |
* | Merge pull request #34 from jhunkeler/fix-rpathJoseph Hunkeler2020-05-081-1/+8
|\| | | | | Fix RPATH generator on Darwin
| * Fix RPATH generator on DarwinJoseph Hunkeler2020-05-081-1/+8
|/
* Merge pull request #33 from jhunkeler/install-name-toolJoseph Hunkeler2020-05-0723-110/+448
|\ | | | | Install name tool (etc...)
| * Enable installation testJoseph Hunkeler2020-05-071-16/+14
| |
| * Fix installationJoseph Hunkeler2020-05-071-2/+2
| |
| * Add brew curlJoseph Hunkeler2020-05-071-0/+1
| |
| * Update circleci configJoseph Hunkeler2020-05-071-0/+1
| |
| * Use pkg-configJoseph Hunkeler2020-05-074-2/+20
| |
| * Add missing error_handler.hJoseph Hunkeler2020-05-071-0/+1
| |
| * Remove unused md5 headerJoseph Hunkeler2020-05-072-2/+0
| |
| * Improvements:Joseph Hunkeler2020-05-071-1/+26
| | | | | | | | | | * Add spm_debug_shell(): to be called from within a build script * Incorporate realpath instead of relying on python
| * Add realpath.c (Darwin is so great)Joseph Hunkeler2020-05-072-0/+44
| |
| * Portability and bug fixes:Joseph Hunkeler2020-05-061-15/+32
| | | | | | | | | | | | | | | | | | * Remove errant argument list from popd() * Normalize mktemp calls * Allow LD_LIBRARY_PATH and LD_RUN_PATH on Linux * Totally destroy DYLD_LIBRARY_PATH on Darwin * Print paths to root, runtime, and pkgdir when keep=1 * Print xFLAGS after dumping SPM_ variables
| * Adjust compilation flags for DarwinJoseph Hunkeler2020-05-061-2/+7
| |
| * Add TODO itemJoseph Hunkeler2020-05-061-0/+1
| |
| * Add rpath_get testJoseph Hunkeler2020-05-011-7/+13
| |
| * Add generic OS_SUPPORTED defineJoseph Hunkeler2020-05-011-6/+14
| |
| * Use OS_DARWIN, not OS_APPLEJoseph Hunkeler2020-05-011-1/+1
| |
| * Add install_name_tool and Darwin specific branchesJoseph Hunkeler2020-05-012-3/+23
| |
| * Add SPM_ERR_NOT_IMPLEMENTED error typeJoseph Hunkeler2020-05-012-0/+2
| |
| * Add mock_image functionJoseph Hunkeler2020-05-012-0/+127
| |
| * Fix typoJoseph Hunkeler2020-04-291-1/+1
| |
| * Add install_name_toolJoseph Hunkeler2020-04-291-57/+38
| | | | | | | | * Begin refactoring to support macos more easily
| * refactor shlib_deps_objdump to become a generic objdump-erJoseph Hunkeler2020-04-292-4/+89
|/
* Merge pull request #32 from jhunkeler/circle-testsJoseph Hunkeler2020-04-284-2/+150
|\ | | | | Try to store ctest results
| * Install xsltprocJoseph Hunkeler2020-04-281-1/+2
| |
| * Use converterJoseph Hunkeler2020-04-281-2/+4
| |
| * ctest to junit converterJoseph Hunkeler2020-04-281-0/+134
| |
| * Create subdirectoryJoseph Hunkeler2020-04-281-1/+1
| |
| * Try to store ctest resultsJoseph Hunkeler2020-04-281-2/+2
| |
| * Try to store ctest resultsJoseph Hunkeler2020-04-282-1/+12
|/
* Merge pull request #31 from jhunkeler/strlist-helpersJoseph Hunkeler2020-04-2823-204/+424
|\ | | | | Strlist helpers
| * define MAXFLOAT if it is not alreadyJoseph Hunkeler2020-04-282-8/+4
| |
| * Handle missing MAXFLOATJoseph Hunkeler2020-04-281-0/+4
| |
| * Fix formatter bugJoseph Hunkeler2020-04-281-1/+1
| |
| * Refactor TestValue usageJoseph Hunkeler2020-04-2818-136/+176
| |
| * Refactor TestValue member namesJoseph Hunkeler2020-04-281-3/+8
| |
| * Remove TODOJoseph Hunkeler2020-04-281-1/+0
| |
| * Improved strlist:Joseph Hunkeler2020-04-283-59/+235
|/ | | | | | | * Use strto*() functions instead of ato*() * Add _cmp and _copy functions * Removed compare functions * Replaced qsort call with strsort