gnu: guile-static: Disable JIT on GNU/Hurd.
* gnu/packages/make-bootstrap.scm (make-guile-static): Pass "--disable-jit" when targeting GNU/Hurd.
This commit is contained in:
		
							parent
							
								
									191c1992b8
								
							
						
					
					
						commit
						da8be73d5b
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		|  | @ -699,8 +699,10 @@ for `sh' in $PATH, and without nscd, and with static NSS modules." | |||
|           ;; When `configure' checks for ltdl availability, it | ||||
|           ;; doesn't try to link using libtool, and thus fails | ||||
|           ;; because of a missing -ldl.  Work around that. | ||||
|           ''("LDFLAGS=-ldl" | ||||
|              "--enable-mini-gmp")) | ||||
|           `(list "LDFLAGS=-ldl" "--enable-mini-gmp" | ||||
|                  ,@(if (hurd-target?) | ||||
|                        '("--disable-jit") | ||||
|                        '()))) | ||||
|          ((#:phases phases '%standard-phases) | ||||
|           `(modify-phases ,phases | ||||
| 
 | ||||
|  |  | |||
		Reference in a new issue