[Gambas-user] Issue 595 in gambas: GNU support

gambas at ...2524... gambas at ...2524...
Tue Jan 20 12:16:23 CET 2015


Comment #6 on issue 595 by costamag... at ...626...: GNU support
https://code.google.com/p/gambas/issues/detail?id=595

sorry I copy-paster the wrong line...

http://www.gnu.org/software/hurd/hurd/porting/guidelines.html tells it to  
you :)
"When using GNU autotools to configure a package config.guess and  
config.sub from autotools-dev are used to find out the build machine  
identity: CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM. For GNU/Hurd config.guess  
gives 'i686-unknown-gnu0.3'. Sometimes a quadruple is used adding KERNEL,  
e.g. for Linux on an amd64: 'x86_64-unknown-linux-gnu'. This is however  
actually a triple, it just happens that the operating system part  
unfortunately contains a '-'. config.sub is used to canonicalize on these  
triplets, e.g. config.sub i686-gnu gives 'i686-pc-gnu'."

"If separate case is needed, make sure to put -gnu after -linux:
switch "$host" in
    case *-linux*|*-k*bsd-gnu*)
        something;;
    case *-gnu*)
        something else;;
because else -gnu would catch i386-pc-linux-gnu for instance..."

so I guess we should be fine there

-- 
You received this message because this project is configured to send all  
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings




More information about the User mailing list