mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	Merge pull request #21691 from tonistiigi/fix-gccgo-make
Fix building gccgo from makefile
This commit is contained in:
		
						commit
						76aefc18f9
					
				
					 1 changed files with 6 additions and 3 deletions
				
			
		
							
								
								
									
										9
									
								
								Makefile
									
										
									
									
									
								
							
							
						
						
									
										9
									
								
								Makefile
									
										
									
									
									
								
							| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
.PHONY: all binary build cross default docs docs-build docs-shell shell test test-docker-py test-integration-cli test-unit validate
 | 
					.PHONY: all binary build build-gccgo cross default docs docs-build docs-shell shell gccgo test test-docker-py test-integration-cli test-unit validate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# set the graph driver as the current graphdriver if not set
 | 
					# set the graph driver as the current graphdriver if not set
 | 
				
			||||||
DOCKER_GRAPHDRIVER := $(if $(DOCKER_GRAPHDRIVER),$(DOCKER_GRAPHDRIVER),$(shell docker info | grep "Storage Driver" | sed 's/.*: //'))
 | 
					DOCKER_GRAPHDRIVER := $(if $(DOCKER_GRAPHDRIVER),$(DOCKER_GRAPHDRIVER),$(shell docker info | grep "Storage Driver" | sed 's/.*: //'))
 | 
				
			||||||
| 
						 | 
					@ -66,6 +66,9 @@ binary: build
 | 
				
			||||||
build: bundles
 | 
					build: bundles
 | 
				
			||||||
	docker build ${DOCKER_BUILD_ARGS} -t "$(DOCKER_IMAGE)" -f "$(DOCKERFILE)" .
 | 
						docker build ${DOCKER_BUILD_ARGS} -t "$(DOCKER_IMAGE)" -f "$(DOCKERFILE)" .
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					build-gccgo: bundles
 | 
				
			||||||
 | 
						docker build ${DOCKER_BUILD_ARGS} -t "$(DOCKER_IMAGE)-gccgo" -f Dockerfile.gccgo .
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bundles:
 | 
					bundles:
 | 
				
			||||||
	mkdir bundles
 | 
						mkdir bundles
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -84,8 +87,8 @@ deb: build
 | 
				
			||||||
docs:
 | 
					docs:
 | 
				
			||||||
	$(MAKE) -C docs docs
 | 
						$(MAKE) -C docs docs
 | 
				
			||||||
 | 
					
 | 
				
			||||||
gccgo: build
 | 
					gccgo: build-gccgo
 | 
				
			||||||
	$(DOCKER_RUN_DOCKER) hack/make.sh gccgo
 | 
						$(DOCKER_FLAGS) "$(DOCKER_IMAGE)-gccgo" hack/make.sh gccgo
 | 
				
			||||||
 | 
					
 | 
				
			||||||
rpm: build
 | 
					rpm: build
 | 
				
			||||||
	$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary build-rpm
 | 
						$(DOCKER_RUN_DOCKER) hack/make.sh dynbinary build-rpm
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue