Changeset 14 for trunk/www/emulator.php
- Timestamp:
- Jun 11, 2009, 10:43:35 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/emulator.php
r12 r14 20 20 global $System; 21 21 22 $this->Database->insert('Task', array('User' => $System->Modules['User']->User['Id'], 'Title' => $Title, 'Time' => 'NOW()', 'CommandList' => implode("\n", $Task) ));22 $this->Database->insert('Task', array('User' => $System->Modules['User']->User['Id'], 'Title' => $Title, 'Time' => 'NOW()', 'CommandList' => implode("\n", $Task)."\n")); 23 23 } 24 24 … … 60 60 'mkdir objdir', 61 61 'cd objdir', 62 '../configure --prefix='.$Config['BaseDir'].'emulator/'.$this->Id.'/ --enable-cli --enable-ra --with-debug-info', 62 'export CFLAGS="-march=athlon64 -m64 -O2 -g -ggdb', 63 'export CXXFLAGS="-march=athlon64 -m64 -O2 -g -ggdb', 64 '../configure --prefix='.$Config['BaseDir'].'emulator/'.$this->Id.'/ --enable-cli --enable-ra', 63 65 'make', 64 66 'make install',
Note:
See TracChangeset
for help on using the changeset viewer.