Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
216 user(s) are online (105 user(s) are browsing Forums)

Members: 0
Guests: 216

more...

Support us!

Headlines

 
  Register To Post  

« 1 (2) 3 4 »
Re: CMake progress
Quite a regular
Quite a regular


See User information
@alfkil

Nice! I hope to test it soon.

@Raziel

i'm using version 3.7.1


Retired
Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
Linkage fixed. Now CMake 3.7.1 can build Qt apps on AmigaOS 4.1 :).

Resized Image

NB: I need to fix a small leakage, then it will be ready for release.

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@alfkil
Quote:
Are you sure, you are setting the PATH variable as I describe?

AmiCygnix and some other Linux based program are setting the PATH variable to completely different text. I suggest you change the CMake PATH variable to CMPATH or something similar to avoid conflicts.

Amiga X1000 with 2GB memory & OS 4.1FE + Radeon HD 5450

Go to top
Re: CMake progress
Home away from home
Home away from home


See User information
@xenic

Quote:

AmiCygnix and some other Linux based program are setting the PATH variable to completely different text. I suggest you change the CMake PATH variable to CMPATH or something similar to avoid conflicts.


Don't be silly, there is only one PATH variable and in the first instance it's the PATH used by abc-shell to find programs, all other linux derived programs modify it to allow their required components to be found on the path.

That is why you should generally do somthing like

PATH="$PATH:/someextrapath/bin"

in a 'sh' script or sometimes.

setenv PATH "$PATH:/someotherpath/bin"

in a AmigaDOS script.

You can't set a CMPATH var instead as that will never be seen or interpreted by the abc-shell program.


Go to top
Re: CMake progress
Quite a regular
Quite a regular


See User information
@alfkil

Good to hear.

What about the requester for assign?

Retired
Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@AmigaBlitter

Gone :).
--
Here are the sources: https://www.dropbox.com/s/03r8ifomnw9l ... ake-3.7.1-source.lha?dl=0

Please do a non-case sensitive search for 'amiga' in this archive to see, what I have changed.
--
The release archive is in the os4depot upload queue.

Thanks for being with us :).

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@broadblues
Quote:
You can't set a CMPATH var instead as that will never be seen or interpreted by the abc-shell program.


I'm not a Linux user and not really aware that the PATH variable was only for the shell (abc-shell) and I have the abc-shell path set in SDK:Data/abc-shell/variables.

Here is the problem that made me think there as a conflict:

When I start AmiCygnix without setting a Cmake PATH variable I get this:

getenv PATH
/Cygnix/CygnixPPC/gtk2.24/bin:/Cygnix/CygnixPPC/local/bin:/Cygnix/CygnixPPC/bin:/Cygnix/CygnixPPC/X11R6.3/bin:/C

If I set the CMake PATH variable (using $PATH) before starting AmiCygnix like this:
setenv PATH "$PATH:/someotherpath/bin"

and then start AmiCygnix I get this:
getenv PATH
$PATH:/someotherpath/bin

Maybe my problem is with my AmiCygnix setup but it looked like a conflict to me.

Amiga X1000 with 2GB memory & OS 4.1FE + Radeon HD 5450

Go to top
Re: CMake progress
Home away from home
Home away from home


See User information
@xenic

I think your problem is that $PATH was not set once before.

(NutsAboutAmiga)

Basilisk II for AmigaOS4
AmigaInputAnywhere
Excalibur
and other tools and apps.
Go to top
Re: CMake progress
Quite a regular
Quite a regular


See User information
@alfkil

Thank you alfkil.

Thanks to you I will start the study where i finished (early bootstrapping cmake)



Retired
Go to top
Re: CMake progress
Home away from home
Home away from home


See User information
@xenic

Quote:

I'm not a Linux user and not really aware that the PATH variable was only for the shell (abc-shell)


Primarialy for the abc-shell, other prgrams like CMake may manually traverse it to deterimine availablilty of programs to a build script etc.
Quote:

and I have the abc-shell path set in SDK:Data/abc-shell/variables.


Mines in HOME:.abcrc but yes it's common to extend the default path in a startup shell.

eg:
PATH=".:/SDK/Local/C:/SDK/Local/newlib/bin:$PATH"

THis version will only be visible inside abc-shell.

Quote:

getenv PATH
/Cygnix/CygnixPPC/gtk2.24/bin:/Cygnix/CygnixPPC/local/bin:/Cygnix/CygnixPPC/bin:/Cygnix/CygnixPPC/X11R6.3/bin:/C

If I set the CMake PATH variable (using $PATH) before starting AmiCygnix like this:
setenv PATH "$PATH:/someotherpath/bin"

and then start AmiCygnix I get this:
getenv PATH
$PATH:/someotherpath/bin


OK. this is because of two things, AmigaOS differ from bash / ksh in that iff FOO isn;t set then $FOO will in a string returns $FOO, in bash it would return "" (ie nothing).

Simplest solution to that bit is to set PATH either earlier in your user-startup (or in sdk-startup) or as a one off by doing

setenv save PATH = "/gcc/bin:/SDK/C:/C"

(that's the internal default of abc-shell, which will be why not setting it still works when no other PATH manipulators are out there)

The second would be that I'd guess that AmiCygnix startup only replaces the PATH if it's not set, so some fixing of the amicyngix startup might be required.

I dislike the amicygnix setup with avengence so don't have it installed here, so can't check whats going on specifically.

Afurther alternative would be to add the CMake path element to teh abc-shell variables PATH, but then you would have to ensure your always ran CMake from within abc-shell, but in many ways that could be tidier.

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
I recommend that cmake be statically linked (or bundle any shared object libs with it), since it's probably not gonna be too long before I update libcurl, and the .so filename might change.

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@alfkil

First of all, thanks for working on CMake, it seems quite important tool today.

I tried to build SDL2 with it but first it crashed (could be my 64 kilobyte stack, because crash couldn't be reproduced with 100 kilobytes - maybe some stack cookie would be nice?).

After stack increase it started to give this error:

Code:svn/sdl2-amigaos4-code/trunk/_cmaketest> cmake .. 
CMake Error: CMake was unable to find a build program corresponding to "Unix Makefiles".  CMAKE_MAKE_PROGRAM is not set.
You probably need to select a different build tool. CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage -- Configuring incomplete, errors occurred!


Anyone else seen this?

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
After some snooping, it looks like cmake is not able to Lock "make" command. Make still works from the same shell though, as usual.

If I copy make to my Cmake/bin directory, it proceeds, until failing with compiler check.

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@Capehill

Have you set both the AmigaOS path and the PATH environment variable to be able to locate those entities? It needs to be able to find both cmake and gmake/make in both ways. Also, it should use gmake for unix path abilities, if it looks for make, it is a mistake.

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@alfkil

I tried to follow the instructions. Below is my config and log.

path code:cmake-3.7.1/bin
setenv PATH $PATH
:/code/cmake-3.7.1/bin



Log Generated by
; Snoopy 53.39 (9.1.2016)

00001 : Shell Process   : o.k. = GetVar("_pchar",0x59037D18,32,0x00000200) [19uS]
00002 : Shell Process   : o.k. = GetVar("_mchar",0x59037D18,32,0x00000200) [6uS]
00003 : Shell Process   : o.k. = GetVar("_pchar",0x59037D18,32,0x00000200) [7uS]
00004 : Shell Process   : o.k. = GetVar("_mchar",0x59037D18,32,0x00000200) [5uS]
00005 : Shell Process   : FAIL = FindSegment("cmake",0x00000000,USER) [12uS]
00006 : Shell Process   : FAIL = FindSegment("cmake",0x00000000,SYSTEM) [5uS]
00007 : Shell Process   :        SetCurrentDir("<untracked>")
00008 : 
Shell Process   : FAIL = Lock("cmake",SHARED) [73uS]
00009 : 
Shell Process   :        SetCurrentDir("<untracked>")
00010 : Shell Process   :        SetCurrentDir("<untracked>")
00011 : Shell Process   : FAIL = Lock("cmake",SHARED) [69uS]
00012 : Shell Process   :        SetCurrentDir("<untracked>")
00013 : Shell Process   :        SetCurrentDir("<untracked>")
00014 : Shell Process   : FAIL = Lock("cmake",SHARED) [59uS]
00015 : Shell Process   :        SetCurrentDir("<untracked>")
00016 : Shell Process   :        SetCurrentDir("<untracked>")
00017 : Shell Process   : FAIL = Lock("cmake",SHARED) [31uS]
00018 : 
Shell Process   :        SetCurrentDir("<untracked>")
00019 : 
Shell Process   :        SetCurrentDir("<untracked>")
00020 : Shell Process   : FAIL = Lock("cmake",SHARED) [24uS]
00021 : Shell Process   :        SetCurrentDir("<untracked>")
00022 : Shell Process   :        SetCurrentDir("<untracked>")
00023 : Shell Process   : FAIL = Lock("cmake",SHARED) [30uS]
00024 : Shell Process   :        SetCurrentDir("<untracked>")
00025 : Shell Process   :        SetCurrentDir("<untracked>")
00026 : Shell Process   : FAIL = Lock("cmake",SHARED) [26uS]
00027 : Shell Process   :        SetCurrentDir("<untracked>")
00028 : 
Shell Process   :        SetCurrentDir("<untracked>")
00029 : 
Shell Process   : FAIL = Lock("cmake",SHARED) [33uS]
00030 : Shell Process   :        SetCurrentDir("<untracked>")
00031 : Shell Process   :        SetCurrentDir("<untracked>")
00032 : Shell Process   : FAIL = Lock("cmake",SHARED) [46uS]
00033 : Shell Process   :        SetCurrentDir("<untracked>")
00034 : Shell Process   :        SetCurrentDir("<untracked>")
00035 : Shell Process   : FAIL = Lock("cmake",SHARED) [42uS]
00036 : Shell Process   :        SetCurrentDir("<untracked>")
00037 : Shell Process   :        SetCurrentDir("<untracked>")
00038 : 
Shell Process   : FAIL = Lock("cmake",SHARED) [36uS]
00039 : 
Shell Process   :        SetCurrentDir("<untracked>")
00040 : Shell Process   :        SetCurrentDir("<untracked>")
00041 : Shell Process   : FAIL = Lock("cmake",SHARED) [31uS]
00042 : Shell Process   :        SetCurrentDir("<untracked>")
00043 : Shell Process   :        SetCurrentDir("<untracked>")
00044 : Shell Process   : FAIL = Lock("cmake",SHARED) [29uS]
00045 : Shell Process   :        SetCurrentDir("<untracked>")
00046 : Shell Process   :        SetCurrentDir("<untracked>")
00047 : Shell Process   : FAIL = Lock("cmake",SHARED) [8119uS]
00048 : 
Shell Process   :        SetCurrentDir("<untracked>")
00049 : 
Shell Process   :        SetCurrentDir("<untracked>")
00050 : Shell Process   : o.k. = Lock("cmake",SHARED) [72uS]
00051 : Shell Process   : o.k. = ExamineObject(0x59037CA8) [43uS]
00052 : Shell Process   : o.k. = LoadSeg("cmake") = [0x16416C35] [974663uS]
00053 : Shell Process   : o.k. = Lock("cmake",SHARED) [39uS]
00054 : Shell Process   : DIR  = ParentDir("cmake") [20uS]
00055 : Shell Process   :        SetCurrentDir("<untracked>")
00056 : cmake           : o.k. = Open("CONSOLE:",OLD) = [0x17F1BE00] [1904uS]
00057 : cmake           : o.k. = IsInteractive("CONSOLE:")
00058 : 
cmake           : 0    = FindSegmentStackSize("cmake") [105317uS]
00059 : 
cmake           : -----> RunCommand(0x16416C35 "cmake",,"..",3) 
00060 : cmake           : 0    = FindSegmentStackSize("cmake") [6uS]
00061 : cmake           : o.k. = [exec] OpenLibrary("newlib.library",52) [14uS]
00062 : cmake           : o.k. = IsInteractive("<untracked>")
00063 : cmake           : o.k. = IsInteractive("<untracked>")
00064 : cmake           : o.k. = IsInteractive("CONSOLE:")
00065 : cmake           : o.k. = IsInteractive("CONSOLE:")
00066 : cmake           : FAIL = GetVar("EXEC_IMPORT_LOCAL",0x5899ED28,8,0x00000200) [19uS]
00067 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest",SHARED) [80uS]
00068 : 
cmake           :        SetCurrentDir("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest")
00069 : 
cmake           : o.k. = [exec] OpenLibrary("pthreads.library",53) [74uS]
00070 : cmake           : o.k. = [exec] OpenLibrary("dos.library",52) [10uS]
00071 : cmake           : o.k. = [exec] OpenDevice("timer.device",3,0x5B745BD0,0x00000000) = 0 [46uS]
00072 : cmake           : o.k. = Lock("T:",SHARED) [117uS]
00073 : cmake           : o.k. = Lock("RAM Disk:T",SHARED) [64uS]
00074 : cmake           : o.k. = ExamineObject(0x5899D5C8) [25uS]
00075 : cmake           : FAIL = Lock("cmake",SHARED) [84uS]
00076 : cmake           : FAIL = Lock("$PATH/cmake",SHARED) [83uS]
00077 : cmake           : o.k. = Lock("code:cmake-3.7.1/bin/cmake",SHARED) [109uS]
00078 : 
cmake           : o.k. = ExamineObject(0x5899DF48) [49uS]
00079 : 
cmake           : o.k. = Lock("code:cmake-3.7.1/bin/cmake",SHARED) [85uS]
00080 : 
cmake           : o.k. = ExamineObject(0x5899D948) [39uS]
00081 : 
cmake           : o.k. = Lock("code:cmake-3.7.1/bin/cmake",SHARED) [98uS]
00082 : 
cmake           : o.k. = ExamineObject(0x5899E0F8) [46uS]
00083 : 
cmake           : o.k. = Lock("code:cmake-3.7.1/bin/cmake",SHARED) [89uS]
00084 : 
cmake           : o.k. = ExamineObject(0x5899E0F8) [39uS]
00085 : 
cmake           : o.k. = Lock("code:cmake-3.7.1/bin/cmake",SHARED) [93uS]
00086 : 
cmake           : FAIL = Lock("Code:cmake-3.7.1/bin/cmake-gui",SHARED) [91uS]
00087 : 
cmake           : FAIL = Lock("Code:cmake-3.7.1/bin/ccmake",SHARED) [88uS]
00088 : 
cmake           : FAIL = Lock("Code:cmake-3.7.1/bin/cmcldeps",SHARED) [85uS]
00089 : 
cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMake.cmake",SHARED) [121uS]
00090 : 
cmake           : o.k. = ExamineObject(0x5899E228) [48uS]
00091 : 
cmake           : o.k. = Lock("/",SHARED) [101uS]
00092 : 
cmake           : o.k. = ExamineObject(0x5899D6F8) [40uS]
00093 : 
cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeCache.txt",SHARED) [97uS]
00094 : 
cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [111uS]
00095 : 
cmake           : o.k. = ExamineObject(0x5899DBA8) [46uS]
00096 : 
cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt",SHARED) [127uS]
00097 : 
cmake           : o.k. = ExamineObject(0x5899D6C8) [49uS]
00098 : 
cmake           : o.k. = Open("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt",OLD) = [0x17F1BFA6] [154u
00099 : cmake           : o.k. = ExamineObject(0x5899D528) [49uS]
00100 : cmake           : FAIL = IsInteractive("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt")
00101 : cmake           : o.k. = IsFileSystem("Code:") [41uS]
00102 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt",SHARED) [136uS]
00103 : cmake           : o.k. = ExamineObject(0x5899D6F8) [51uS]
00104 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt",SHARED) [97uS]
00105 : cmake           : o.k. = ExamineObject(0x5899D6F8) [1522uS]
00106 : cmake           : DIR  = ParentOfFH(0x17F1BFA6) "Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt" [424uS]
00107 : cmake           : o.k. = ExamineObject(0x5899D7E8) [4675uS]
00108 : 
cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMake.cmake",SHARED) [1201uS]
00109 : 
cmake           : o.k. = ExamineObject(0x5899DCC8) [2080uS]
00110 : cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/PreLoad.cmake",SHARED) [112uS]
00111 : cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/PreLoad.cmake",SHARED) [99uS]
00112 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [133uS]
00113 : cmake           : o.k. = ExamineObject(0x5899D7A8) [50uS]
00114 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [100uS]
00115 : cmake           : o.k. = ExamineObject(0x5899D7D8) [50uS]
00116 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [112uS]
00117 : cmake           : o.k. = ExamineObject(0x5899D7D8) [43uS]
00118 : 
cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeOutput.log",SHARED) [119uS]
00119 : 
cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeError.log",SHARED) [96uS]
00120 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles",SHARED) [147uS]
00121 : cmake           : o.k. = ExamineObject(0x5899CFF8) [51uS]
00122 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles",SHARED) [109uS]
00123 : cmake           : o.k. = ExamineObject(0x5899C9F8) [42uS]
00124 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [111uS]
00125 : cmake           : o.k. = ExamineObject(0x5899D128) [48uS]
00126 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [94uS]
00127 : cmake           : o.k. = ExamineObject(0x5899CB28) [41uS]
00128 : 
cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [110uS]
00129 : 
cmake           : o.k. = ExamineObject(0x5899CF88) [47uS]
00130 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [99uS]
00131 : cmake           : o.k. = ExamineObject(0x5899CAD8) [43uS]
00132 : cmake           : o.k. = Open("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",OLD) = [0x17F1BFA6] [142uS]
00133 : cmake           : o.k. = ExamineObject(0x5899CE28) [50uS]
00134 : cmake           : FAIL = IsInteractive("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt")
00135 : cmake           : o.k. = IsFileSystem("Code:") [43uS]
00136 : cmake           : o.k. = ExamineObject(0x5899D078) [53uS]
00137 : cmake           : o.k. = GetFilePosition(0x17F1BFA6) = 32768 [16uS]
00138 : 
cmake           : DIR  = ParentOfFH(0x17F1BFA6) "Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt" [63uS]
00139 : 
cmake           : o.k. = ExamineObject(0x5899D198) [43uS]
00140 : cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake",SHARED) [152uS]
00141 : cmake           : o.k. = ExamineObject(0x5899B868) [52uS]
00142 : cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake",SHARED) [134uS]
00143 : cmake           : o.k. = ExamineObject(0x5899B7D8) [49uS]
00144 : cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake",SHARED) [106uS]
00145 : cmake           : o.k. = ExamineObject(0x5899B328) [44uS]
00146 : cmake           : o.k. = Open("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake",OLD) = [0x17F1BFA6] 
00147 : cmake           : o.k. = ExamineObject(0x5899B678) [50uS]
00148 : 
cmake           : FAIL = IsInteractive("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake")
00149 : 
cmake           : o.k. = IsFileSystem("Code:") [40uS]
00150 : cmake           : o.k. = ExamineObject(0x5899B8C8) [47uS]
00151 : cmake           : o.k. = GetFilePosition(0x17F1BFA6) = 575 [16uS]
00152 : cmake           : DIR  = ParentOfFH(0x17F1BFA6) "Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake" [6
00153 
: cmake           : o.k. = ExamineObject(0x5899B9E8) [45uS]
00154 : cmake           : FAIL = Lock("gmake",SHARED) [79uS]
00155 : cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/$PATH/gmake",SHARED) [102uS]
00156 : cmake           : FAIL = Lock("code:cmake-3.7.1/bin/gmake",SHARED) [88uS]
00157 : cmake           : FAIL = Lock("make",SHARED) [63uS]
00158 : 
cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/$PATH/make",SHARED) [93uS]
00159 : 
cmake           : FAIL = Lock("code:cmake-3.7.1/bin/make",SHARED) [81uS]
00160 : cmake           : FAIL = Lock("smake",SHARED) [66uS]
00161 : cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/$PATH/smake",SHARED) [96uS]
00162 : cmake           : FAIL = Lock("code:cmake-3.7.1/bin/smake",SHARED) [83uS]
00163 : cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/3.7.1/CMakeSystem.cmake",SHARE
00164 
: cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake",SHARED) [133uS]
00165 : cmake           : o.k. = ExamineObject(0x5899BB28) [52uS]
00166 : cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake",SHARED) [135uS]
00167 : cmake           : o.k. = ExamineObject(0x5899BA98) [52uS]
00168 : 
cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake",SHARED) [114uS]
00169 : 
cmake           : o.k. = ExamineObject(0x5899B5E8) [45uS]
00170 : cmake           : o.k. = Open("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake",OLD) = [0x17F1BFA
00171 
: cmake           : o.k. = ExamineObject(0x5899B938) [50uS]
00172 : cmake           : FAIL = IsInteractive("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake")
00173 : cmake           : o.k. = IsFileSystem("Code:") [40uS]
00174 : cmake           : o.k. = ExamineObject(0x5899BB88) [48uS]
00175 : cmake           : o.k. = GetFilePosition(0x17F1BFA6) = 7505 [16uS]
00176 : cmake           : DIR  = ParentOfFH(0x17F1BFA6) "Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake"
00177 : cmake           : o.k. = ExamineObject(0x5899BCA8) [43uS]
00178 : 
cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/3.7.1/CMakeSystem.cmake",SHARE
00179 : cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake",SHARED) 
00180 : 
cmake           : o.k. = ExamineObject(0x5899BB28) [53uS]
00181 : 
cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake",SHARED) 
00182 : 
cmake           : o.k. = ExamineObject(0x5899BA98) [51uS]
00183 : 
cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake",SHARED) 
00184 : 
cmake           : o.k. = ExamineObject(0x5899B5E8) [46uS]
00185 : 
cmake           : o.k. = Open("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake",OLD) = [
00186 : 
cmake           : o.k. = ExamineObject(0x5899B938) [53uS]
00187 : 
cmake           : FAIL = IsInteractive("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake"
00188 : cmake           : o.k. = IsFileSystem("Code:") [43uS]
00189 : 
cmake           : o.k. = ExamineObject(0x5899BB88) [54uS]
00190 : 
cmake           : o.k. = GetFilePosition(0x17F1BFA6) = 372 [14uS]
00191 : 
cmake           : DIR  = ParentOfFH(0x17F1BFA6) "Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeSystemSpecificInitiali
00192 : cmake           : o.k. = ExamineObject(0x5899BCA8) [45uS]
00193 : cmake           : FAIL = Lock("
Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/3.7.1/CMakeCCompiler.cmake",SH
00194 : cmake           : o.k. = Lock("
Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineCCompiler.cmake",SHARED) [129uS
00195 : cmake           : o.k. = ExamineObject(0x5899BB28) [54uS]
00196 : cmake           : o.k. = Lock("
Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineCCompiler.cmake",SHARED) [122uS
00197 : cmake           : o.k. = ExamineObject(0x5899BA98) [49uS]
00198 : cmake           : o.k. = Lock("
Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineCCompiler.cmake",SHARED) [114uS
00199 : cmake           : o.k. = ExamineObject(0x5899B5E8) [48uS]
00200 : cmake           : o.k. = Open("
Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineCCompiler.cmake",OLD) = [0x17F1
00201 : cmake           : o.k. = ExamineObject(0x5899B938) [50uS]
00202 : cmake           : FAIL = IsInteractive("
Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineCCompiler.cmake")
00203 : cmake           : o.k. = IsFileSystem("
Code:") [41uS]
00204 : cmake           : o.k. = ExamineObject(0x5899BB88) [47uS]
00205 : cmake           : o.k. = GetFilePosition(0x17F1BFA6) = 6658 [16uS]
00206 : cmake           : DIR  = ParentOfFH(0x17F1BFA6) "
Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineCCompiler.cma
00207 
: cmake           : o.k. = ExamineObject(0x5899BCA8) [43uS]
00208 : 
cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CPackConfig.cmake",SHARED) [128uS]
00209 : 
cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CPackSourceConfig.cmake",SHARED) [93uS]
00210 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/CMakeLists.txt",SHARED) [134uS]
00211 : cmake           : o.k. = ExamineObject(0x5899CFD8) [51uS]
00212 : cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeUnixFindMake.cmake",SHARED) [125uS]
00213 : cmake           : o.k. = ExamineObject(0x5899CFD8) [48uS]
00214 : cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineSystem.cmake",SHARED) [125uS]
00215 : cmake           : o.k. = ExamineObject(0x5899CFD8) [46uS]
00216 : cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeSystemSpecificInitialize.cmake",SHARED) 
00217 : cmake           : o.k. = ExamineObject(0x5899CFD8) [62uS]
00218 : 
cmake           : o.k. = Lock("Code:cmake-3.7.1/share/cmake-3.7/Modules/CMakeDetermineCCompiler.cmake",SHARED) [139uS
00219 : cmake           : o.k. = ExamineObject(0x5899CFD8) [48uS]
00220 : cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/CMakeOutput.log",SHARED) [124u
00221 
: cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/CMakeError.log",SHARED) [100uS
00222 
: cmake           : FAIL = ExamineObject(0x5899D4E8) [15153uS]
00223 : cmake           : FAIL = Delete("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp") [126uS]
00224 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest",SHARED) [99uS]
00225 : cmake           : o.k. = ExamineObject(0x5899CB58) [50uS]
00226 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest",SHARED) [90uS]
00227 : cmake           : o.k. = ExamineObject(0x5899C558) [42uS]
00228 : 
cmake           : FAIL = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp",SHARED) [103uS]
00229 : 
cmake           : o.k. = Open("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp",RW ) = [0x17F1BFA6] [
00230 : cmake           : o.k. = ExamineObject(0x5899CD78) [48uS]
00231 : cmake           : FAIL = IsInteractive("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp")
00232 : cmake           : o.k. = IsFileSystem("Code:") [49uS]
00233 : cmake           : DIR  = ParentOfFH(0x17F1BFA6) "Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp" [57
00234 
: cmake           : o.k. = ExamineObject(0x5899D3B8) [43uS]
00235 : cmake           :        SetCurrentDir("<untracked>")
00236 : cmake           : o.k. = SetProtection("CMakeCache.txt.tmp",0x00008802) [12848uS]
00237 : cmake           :        SetCurrentDir("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest")
00238 : 
cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp",SHARED) [132uS]
00239 : 
cmake           : o.k. = ExamineObject(0x5899ABD8) [48uS]
00240 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt",SHARED) [104uS]
00241 : cmake           : o.k. = ExamineObject(0x5899ABD8) [52uS]
00242 : cmake           : o.k. = Open("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp",OLD) = [0x17F1BFA6] [
00243 : cmake           : o.k. = ExamineObject(0x5899A968) [51uS]
00244 : cmake           : FAIL = IsInteractive("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp")
00245 : cmake           : o.k. = IsFileSystem("Code:") [41uS]
00246 : cmake           : o.k. = Open("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt",OLD) = [0x17F1B94C] [157u
00247 
: cmake           : o.k. = ExamineObject(0x5899A968) [48uS]
00248 : 
cmake           : FAIL = IsInteractive("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt")
00249 : 
cmake           : o.k. = IsFileSystem("Code:") [41uS]
00250 : cmake           : DIR  = ParentOfFH(0x17F1B94C) "Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt" [51uS]
00251 : cmake           : o.k. = ExamineObject(0x5899AC28) [47uS]
00252 : cmake           : DIR  = ParentOfFH(0x17F1BFA6) "Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp" [43
00253 
: cmake           : o.k. = ExamineObject(0x5899AC28) [41uS]
00254 : cmake           : o.k. = Delete("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp") [17708uS]
00255 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles",SHARED) [143uS]
00256 : cmake           : o.k. = ExamineObject(0x5899CF18) [43uS]
00257 : cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles",SHARED) [102uS]
00258 : 
cmake           : o.k. = ExamineObject(0x5899C918) [48uS]
00259 : 
cmake           : o.k. = Lock("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/cmake.check_cache",SHARED) [13
00260 
: cmake           : o.k. = ExamineObject(0x5899CEC8) [49uS]
00261 : cmake           : o.k. = Open("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/cmake.check_cache",NEW) = [0x1
00262 
: cmake           : FAIL = IsInteractive("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/cmake.check_cache")
00263 : cmake           : o.k. = IsFileSystem("Code:") [51uS]
00264 : cmake           : o.k. = ChangeMode(CHANGE_FH,0x17F1BFA6,SHARED_LOCK) [9uS]
00265 : cmake           : DIR  = ParentOfFH(0x17F1BFA6) "Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeFiles/cmake.check_
00266 : cmake           : o.k. = ExamineObject(0x5899D188) [15766uS]
00267 : cmake           :        SetCurrentDir("
<untracked>")
00268 : cmake           : o.k. = SetProtection("
cmake.check_cache",0x00008802) [623uS]
00269 : cmake           :        SetCurrentDir("
Code:svn/sdl2-amigaos4-code/trunk/_cmaketest")
00270 : cmake           : FAIL = Lock("
Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp",SHARED) [111uS]
00271 : cmake           : FAIL = Rename("
Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp" -> "Code:svn/sdl2-a
00272 
: cmake           : FAIL = Delete("Code:svn/sdl2-amigaos4-code/trunk/_cmaketest/CMakeCache.txt.tmp") [102uS]
00273 : cmake           :        SetCurrentDir("<untracked>")
00274 : cmake           : <----- RunCommand(0x16416C35 "cmake",,"..",3) = 1 [0x00000001] [889430uS]
00275 : Shell Process   : o.k. = SetMode("<untracked>",[LINE]) [1626uS]
00276 : Shell Process   : FAIL = GetVar("_Title",0x5B0D140C,256,0x00000200) [20uS]
00277 : Shell Process   : FAIL = GetVar("Echo",0x59037D38,32,0x00000200) [17uS]
00278 : 
Shell Process   : FAIL = GetVar("OldRedirect",0x59037D38,32,0x00000200) [7uS]
00279 : 
Shell Process   : FAIL = GetVar("KeepDoubleQuotes",0x59037D38,32,0x00000200) [5uS]
00280 : 
Shell Process   : FAIL = GetVar("Interactive",0x59037D38,32,0x00000200) [5uS]




Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@Capehill

The way it quotes "$PATH/something" in the snoopy output indicates, that your PATH env variable is not set correctly. Please reread the instructions and try again.

EDIT: As mentioned above - if your PATH variable has not been set previously, you need to leave out '$PATH' from your setenv command. So something like this:

setenv PATH /cmake/bin:/SDK/whatever/path/points/to/gmake

I'm sure, you can fill in the blanks ;).

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@alfkil

Yeah, path was not set previously. However I don't see this in the instructions which I followed too literally. I have now something like:

path code:cmake-3.7.1/bin
setenv PATH 
/SDK/c:/SDK/gcc/bin:/code/cmake-3.7.1/bin


and I can configure SDL2. So situation is looking better.

Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@Capehill

Fantastic! I am glad to hear. :)

Go to top
Re: CMake progress
Quite a regular
Quite a regular


See User information
Setting the stack to 128000 avoided the crash, but I was not able to configure a project yet.

Retired
Go to top
Re: CMake progress
Just can't stay away
Just can't stay away


See User information
@AmigaBlitter

Could you post the console output?

Go to top

  Register To Post
« 1 (2) 3 4 »

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2024 The XOOPS Project