b28dbd417c
								
							 
						 
						
							
								
								Fix compile progress counter  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								04a10236ed
								
							 
						 
						
							
								
								Building of dependencies is now run as part of the main build  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								787465c6d4
								
							 
						 
						
							
								
								We can list catalog contents  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								e2c1b6d6bb
								
							 
						 
						
							
								
								Re-inserting a package into the catalog will replace it  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								c69960a5f0
								
							 
						 
						
							
								
								Add missing operator== for lm pair iterator  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								a79be74102
								
							 
						 
						
							
								
								We have version ranges!  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								a25faaf1fb
								
							 
						 
						
							
								
								Change `dependency` to store a version range, not just a version  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								0730552bf9
								
							 
						 
						
							
								
								Removed the old remote loading code  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								9ddb873570
								
							 
						 
						
							
								
								`ddds deps get` now uses the catalog, and `catalog add` for manually adding entries  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								0d23ff3146
								
							 
						 
						
							
								
								Put the obtained sdist in a useful location  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								d448a1cded
								
							 
						 
						
							
								
								Give the catalog a default path  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								d3844017ff
								
							 
						 
						
							
								
								New `get` for catalog, just a copy of old repo `get` for now  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								955cb7acdb
								
							 
						 
						
							
								
								Move catalog to its own dir, and start adding subcommands for it  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								6de88d9845
								
							 
						 
						
							
								
								Rename to `catalog` to avoid confusion  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								ff833ee583
								
							 
						 
						
							
								
								New remote repo database  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								def2bad758
								
							 
						 
						
							
								
								`catch-runner` isn't even a thing  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								748d320e87
								
							 
						 
						
							
								
								Display a counter while compiling files  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								e7c1be5e6a
								
							 
						 
						
							
								
								Builtin-toolchain prefix for debug  
							
							
							
						 
						5 年之前  
				
					
						
							
								 
						
							
								85ae3b2150
								
							 
						 
						
							
								
								Attach mtimes to individual deps, not files. Fixes a miscompile (!!)  
							
							Fix bug:
- Assume X and Y depend on Z
- X and Y both compile clean.
- A change is made to Z
- X and Y are now "out-of-date," and marked to compile.
- The change causes a failure in X, but Y still compiles clean.
- Because X compiles clean, the database will be updated and store the new mtime of Z!
- Attempting to compile again, the mtime of Z will not be considered "changed" since the last compile.
- X depends on Z, but Z is not marked "changed," and X will not be recompiled, even though it is still in a dirty state!
- Linking of X and Y produces wild results. UB. ORD NDR. Badness.
The fix is to have the edges in the graph between inputs and outputs
store the mtime of the input, rather than to store that mtime on the
file itself. Thus, each individual relationship between inputs and
outputs will track the "outdated-ness" of themselves.
This also adds a test which can correctly reproduce the issue in absense of the fix. 
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								409dc2c83e
								
							 
						 
						
							
								
								Use package_id in remote package listings  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								990e3503af
								
							 
						 
						
							
								
								Incorporate the new package_id type, as use `@` as a name separator  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								4eb8c508f1
								
							 
						 
						
							
								
								A `package_id` type  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								142cc0ac95
								
							 
						 
						
							
								
								Semver is now in a separate repo, we're using GCC 9 now  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								a56a3947e0
								
							 
						 
						
							
								
								Implement all of semver  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								aaea35e23b
								
							 
						 
						
							
								
								Remove the `--full` parameter  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								9c2a245dfa
								
							 
						 
						
							
								
								Fix removal of a file causing a crash in deps tracking  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								f07e6ca9cb
								
							 
						 
						
							
								
								Move `deps.hpp` all into build/  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								c2d2bd6f31
								
							 
						 
						
							
								
								Cleanup compile_exec  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								33e8fbdae1
								
							 
						 
						
							
								
								Rebase built-in toolchains from the DDS parser  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								9de9bbb7d6
								
							 
						 
						
							
								
								Specify the output file for GNU-style deps  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								bf80d6a96b
								
							 
						 
						
							
								
								Fix the main source file not being marked as an input to the compilation  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								7cea3a34f7
								
							 
						 
						
							
								
								Fix deps parsing from striping whitespace on non-deps output  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								8d106a0eab
								
							 
						 
						
							
								
								Handle MSVC deps output for incremental compilation  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								f806dba5ad
								
							 
						 
						
							
								
								Create a dir for the database before opening it  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								c94bea0b68
								
							 
						 
						
							
								
								Function to parse MSVC output for compile deps  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								1f14895a8f
								
							 
						 
						
							
								
								split_view doesn't allocate new strings  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								2233043515
								
							 
						 
						
							
								
								Can't bind a filesystem::path as a string  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								abf5586888
								
							 
						 
						
							
								
								Persist dependency information in an SQLite database, and use it do incremental compilation  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								b2198488aa
								
							 
						 
						
							
								
								Access compile rules of a compile_file_plan  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								1fca2fd03f
								
							 
						 
						
							
								
								Add arguments that handle the generation of compile dependency information.  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								63b206fd7b
								
							 
						 
						
							
								
								Fix language detection (based on file extension)  
							
							Update build script to build our deps
Run the bootstrap builds in their respective directory 
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								3a0f668fb8
								
							 
						 
						
							
								
								Fix `#include` directive for catch-main cpp file  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								fb3749cf27
								
							 
						 
						
							
								
								Use external neo/buffer  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								5d3e49d2b6
								
							 
						 
						
							
								
								Remove unused logging.hpp  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								810c0a69a3
								
							 
						 
						
							
								
								Formatting  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								beb00fa96b
								
							 
						 
						
							
								
								Convert our tests to use Catch2  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								10d8613836
								
							 
						 
						
							
								
								Incorrect flags used in executable linking  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								bd05c2f595
								
							 
						 
						
							
								
								Fix missing flags when linking executables  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								9fc453b0c4
								
							 
						 
						
							
								
								Fix setting the `Include-Path` for dependencies  
							
							
							
						 
						6 年之前  
				
					
						
							
								 
						
							
								224a1b9599
								
							 
						 
						
							
								
								Pull taywee/args directly into the source tree  
							
							
							
						 
						6 年之前